From: paca70 Date: Mon, 27 Sep 2004 05:15:21 +0000 (+0000) Subject: Ficed bug on " -> ' conversion X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=d53748e6bf62e198eab09f987b87c8f1c75f6593;p=moodle.git Ficed bug on " -> ' conversion --- 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 +?>