diff options
author | icewing <icewing@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-05-20 11:09:49 +0000 |
---|---|---|
committer | icewing <icewing@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-05-20 11:09:49 +0000 |
commit | 6258b38d2e274df93333ce36696bcbf49fb8ea2e (patch) | |
tree | 35cf931c43bcb00eba4921d31325aea5e1824d43 /engine/start.php | |
parent | 9ff1d3fad8466b663e271fa0ca00c2bc00529431 (diff) | |
download | elgg-6258b38d2e274df93333ce36696bcbf49fb8ea2e.tar.gz elgg-6258b38d2e274df93333ce36696bcbf49fb8ea2e.tar.bz2 |
Marcus Povey <marcus@dushka.co.uk>
* Debug mode now lists libraries loaded
git-svn-id: https://code.elgg.org/elgg/trunk@656 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/start.php')
-rw-r--r-- | engine/start.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/engine/start.php b/engine/start.php index 673f83d09..9cb23d7af 100644 --- a/engine/start.php +++ b/engine/start.php @@ -93,7 +93,8 @@ // Include them
- foreach($files as $file) {
+ foreach($files as $file) { + if ($CONFIG->debug) error_log("Loading $file...");
if (!@include_once($file))
throw new InstallationException("Could not load {$file}");
}
|