From d53748e6bf62e198eab09f987b87c8f1c75f6593 Mon Sep 17 00:00:00 2001 From: paca70 Date: Mon, 27 Sep 2004 05:15:21 +0000 Subject: [PATCH] Ficed bug on " -> ' conversion --- lib/setup.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/setup.php b/lib/setup.php index d37beb357a..fc694c4b93 100644 --- a/lib/setup.php +++ b/lib/setup.php @@ -101,7 +101,7 @@ global $THEME; echo 'Database name: '. $CFG->dbname .'
'; echo 'Database user: '. $CFG->dbuser .'
'; if (!isset($CFG->dbpersist)) { - echo '

The admin should also try setting this in config.php: $'. CFG->dbpersist .' = false;

'; + echo '

The admin should also try setting this in config.php: '. $CFG->dbpersist .' = false;

'; } echo ''; die; @@ -338,4 +338,4 @@ global $THEME; } } -?> \ No newline at end of file +?> -- 2.39.5