From 0cb29cc411bf5860f510738e2b892736895a0528 Mon Sep 17 00:00:00 2001 From: moodler Date: Wed, 7 May 2003 08:07:48 +0000 Subject: [PATCH] Turn off PHP error reporting while connecting to database --- lib/setup.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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 -- 2.39.5