From ba8eed0e9e988019a5a3186f20c742111211f703 Mon Sep 17 00:00:00 2001 From: ben Date: Tue, 8 Jul 2008 08:17:12 +0000 Subject: Removing annoying warning messages git-svn-id: https://code.elgg.org/elgg/trunk@1328 36083f99-b078-4883-b0ff-0f9b5a30f544 --- engine/lib/database.php | 2 +- engine/lib/elgglib.php | 2 +- engine/lib/metastrings.php | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) (limited to 'engine/lib') diff --git a/engine/lib/database.php b/engine/lib/database.php index 4745ea2d3..9df5f991c 100644 --- a/engine/lib/database.php +++ b/engine/lib/database.php @@ -85,7 +85,7 @@ { global $CONFIG, $DB_PROFILE, $dbcalls; - if ($CONFIG->debug) + if (isset($CONFIG->debug) && $CONFIG->debug) { error_log("***************** DB PROFILING ********************"); diff --git a/engine/lib/elgglib.php b/engine/lib/elgglib.php index 9e7c708e0..e0970ef91 100644 --- a/engine/lib/elgglib.php +++ b/engine/lib/elgglib.php @@ -171,7 +171,7 @@ if (!$success && isset($CONFIG->debug) && $CONFIG->debug == true) { error_log(" [This view ({$view}) does not exist] "); } - } else if ($CONFIG->debug == true && !file_exists($location . "{$viewtype}/{$view}.php")) { + } else if (isset($CONFIG->debug) && $CONFIG->debug == true && !file_exists($location . "{$viewtype}/{$view}.php")) { error_log($location . "{$viewtype}/{$view}.php"); error_log(" [This view ({$view}) does not exist] "); } diff --git a/engine/lib/metastrings.php b/engine/lib/metastrings.php index 4e56ac9e0..fe8cb5bcf 100644 --- a/engine/lib/metastrings.php +++ b/engine/lib/metastrings.php @@ -31,7 +31,7 @@ $result = array_search($string, $METASTRINGS_CACHE); if ($result!==false) { - if ($CONFIG->debug) + if (isset($CONFIG->debug) && $CONFIG->debug) error_log("** Returning id for string:$string from cache."); return $result; @@ -45,7 +45,7 @@ if ($row) { $METASTRINGS_CACHE[$row->id] = $row->string; // Cache it - if ($CONFIG->debug) + if (isset($CONFIG->debug) && $CONFIG->debug) error_log("** Cacheing string '{$row->string}'"); return $row->id; -- cgit v1.2.3