From: moodler Date: Wed, 7 May 2003 08:07:48 +0000 (+0000) Subject: Turn off PHP error reporting while connecting to database X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=0cb29cc411bf5860f510738e2b892736895a0528;p=moodle.git Turn off PHP error reporting while connecting to database --- diff --git a/lib/setup.php b/lib/setup.php index da5f28dfd3..134c774ce4 100644 --- a/lib/setup.php +++ b/lib/setup.php @@ -21,6 +21,7 @@ $db = &ADONewConnection($CFG->dbtype); + error_reporting(0); // Hide errors // Try a persistent connection first, but if it fails, fall back to ordinary connection if (! $db->PConnect($CFG->dbhost,$CFG->dbuser,$CFG->dbpass,$CFG->dbname)) { if (! $db->Connect($CFG->dbhost,$CFG->dbuser,$CFG->dbpass,$CFG->dbname)) { @@ -36,10 +37,11 @@ } } + error_reporting(E_ALL); // Show errors from now on. + if (!isset($CFG->prefix)) { // Just in case it isn't defined in config.php $CFG->prefix = ""; } - //$CFG->prefix = "$CFG->dbname.$CFG->prefix"; /// Define admin directory