summaryrefslogtreecommitdiff
path: root/roundcubemail/installer/config.php
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2009-09-12 07:53:27 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2009-09-12 07:53:27 +0000
commitff61046619b172bf9b15f3344293a0e54c10848b (patch)
tree9464a331f819928a4756a74e5d52d2d9386fb974 /roundcubemail/installer/config.php
parente63f247582d04039dca43c0baf7e7bd8dde017f6 (diff)
- added comments to set absolute path for SQLite DSN (#1486095)
git-svn-id: https://svn.roundcube.net/trunk@2947 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/installer/config.php')
-rw-r--r--roundcubemail/installer/config.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/installer/config.php b/roundcubemail/installer/config.php
index e51b4bf0a..baf7514cc 100644
--- a/roundcubemail/installer/config.php
+++ b/roundcubemail/installer/config.php
@@ -269,7 +269,7 @@ echo '<label for="cfgdbtype">Database type</label><br />';
echo $input_dbhost->show($RCI->is_post ? $_POST['_dbhost'] : $dsnw['hostspec']);
echo '<label for="cfgdbhost">Database server (omit for sqlite)</label><br />';
echo $input_dbname->show($RCI->is_post ? $_POST['_dbname'] : $dsnw['database']);
-echo '<label for="cfgdbname">Database name (use a path and filename for sqlite)</label><br />';
+echo '<label for="cfgdbname">Database name (use absolute path and filename for sqlite)</label><br />';
echo $input_dbuser->show($RCI->is_post ? $_POST['_dbuser'] : $dsnw['username']);
echo '<label for="cfgdbuser">Database user name (needs write permissions)(omit for sqlite)</label><br />';
echo $input_dbpass->show($RCI->is_post ? $_POST['_dbpass'] : $dsnw['password']);