summaryrefslogtreecommitdiff
path: root/installer/config.php
diff options
context:
space:
mode:
authoralecpl <alec@alec.pl>2009-09-12 07:53:27 +0000
committeralecpl <alec@alec.pl>2009-09-12 07:53:27 +0000
commitfafe5dce9e98c657cba6b9cb1c9068fcbaaf35cb (patch)
tree36654d4dc7b73922c9abd12496b04d462ebe1b64 /installer/config.php
parent2659ce1ee18f25a8a33beeccf6172513f3b58d88 (diff)
- added comments to set absolute path for SQLite DSN (#1486095)
Diffstat (limited to 'installer/config.php')
-rw-r--r--installer/config.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/installer/config.php b/installer/config.php
index e51b4bf0a..baf7514cc 100644
--- a/installer/config.php
+++ b/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']);