From 1a3b8f9c9c4fb9c707f7a8eac72babdbb5a8d173 Mon Sep 17 00:00:00 2001 From: ben Date: Tue, 20 May 2008 12:01:05 +0000 Subject: Removing a PHP notice git-svn-id: https://code.elgg.org/elgg/trunk@659 36083f99-b078-4883-b0ff-0f9b5a30f544 --- engine/start.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/start.php b/engine/start.php index 9cb23d7af..e2f52cb68 100644 --- a/engine/start.php +++ b/engine/start.php @@ -94,7 +94,7 @@ // Include them foreach($files as $file) { - if ($CONFIG->debug) error_log("Loading $file..."); + if (isset($CONFIG->debug) && $CONFIG->debug) error_log("Loading $file..."); if (!@include_once($file)) throw new InstallationException("Could not load {$file}"); } -- cgit v1.2.3