aboutsummaryrefslogtreecommitdiff
path: root/engine/start.php
diff options
context:
space:
mode:
authoricewing <icewing@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-06-05 15:17:33 +0000
committericewing <icewing@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-06-05 15:17:33 +0000
commit298a6f9096d9855ff1c5a4cbbdafe08abbdc8e66 (patch)
tree0eab744226d87aae9275e7f5c773351dac710e7d /engine/start.php
parent0e1ef1156515b7b7b524fa9d676122c93be1e938 (diff)
downloadelgg-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/start.php')
-rw-r--r--engine/start.php6
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.");
}
/**