summaryrefslogtreecommitdiff
path: root/installer/config.php
diff options
context:
space:
mode:
authoralecpl <alec@alec.pl>2009-05-02 20:11:45 +0000
committeralecpl <alec@alec.pl>2009-05-02 20:11:45 +0000
commit50d515a7d690f6017d97017f1370705e1a214c27 (patch)
tree7887ff08111e4561d0841c8cf64c227e002db888 /installer/config.php
parentaeed58d5af0d56ec489d15cdbdffa3f95b353a90 (diff)
- some hints to use sqlite db (#1485821)
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 f72a0e820..d090312ed 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</label><br />';
+echo '<label for="cfgdbname">Database name (use a 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']);