diff options
author | icewing <icewing@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-06-05 15:17:33 +0000 |
---|---|---|
committer | icewing <icewing@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-06-05 15:17:33 +0000 |
commit | 298a6f9096d9855ff1c5a4cbbdafe08abbdc8e66 (patch) | |
tree | 0eab744226d87aae9275e7f5c773351dac710e7d /engine | |
parent | 0e1ef1156515b7b7b524fa9d676122c93be1e938 (diff) | |
download | elgg-298a6f9096d9855ff1c5a4cbbdafe08abbdc8e66.tar.gz elgg-298a6f9096d9855ff1c5a4cbbdafe08abbdc8e66.tar.bz2 |
git-svn-id: https://code.elgg.org/elgg/trunk@807 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine')
-rw-r--r-- | engine/start.php | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/engine/start.php b/engine/start.php index 8b0e7dd14..5312d5093 100644 --- a/engine/start.php +++ b/engine/start.php @@ -26,13 +26,11 @@ } if (!@include_once(dirname(__FILE__) . "/lib/system_log.php")) { // Logging library - echo "Error in installation: could not load the System Log library."; - exit; + throw new InstallationException("Error in installation: could not load the System Log library."); } if (!@include_once(dirname(__FILE__) . "/lib/export.php")) { // Export library
- echo "Error in installation: could not load the Export library.";
- exit;
+ throw new InstallationException("Error in installation: could not load the Export library.");
}
/**
|