diff options
author | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-05-20 12:01:05 +0000 |
---|---|---|
committer | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-05-20 12:01:05 +0000 |
commit | 1a3b8f9c9c4fb9c707f7a8eac72babdbb5a8d173 (patch) | |
tree | 6ef9b806b46dc7c3a3fd23423f3f9d6eaa132a22 | |
parent | 3630cf462b13d6aafd7f62d46423dad5e92bbd9e (diff) | |
download | elgg-1a3b8f9c9c4fb9c707f7a8eac72babdbb5a8d173.tar.gz elgg-1a3b8f9c9c4fb9c707f7a8eac72babdbb5a8d173.tar.bz2 |
Removing a PHP notice
git-svn-id: https://code.elgg.org/elgg/trunk@659 36083f99-b078-4883-b0ff-0f9b5a30f544
-rw-r--r-- | engine/start.php | 2 |
1 files changed, 1 insertions, 1 deletions
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}");
}
|