diff options
-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}");
}
|