diff options
-rw-r--r-- | engine/start.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/engine/start.php b/engine/start.php index e2f52cb68..d586a3fb2 100644 --- a/engine/start.php +++ b/engine/start.php @@ -22,6 +22,11 @@ }
if (!@include_once(dirname(__FILE__) . "/lib/elgglib.php")) { // Main Elgg library
throw new InstallationException("Elgg could not load its main library.");
+ } + + if (!@include_once(dirname(__FILE__) . "/lib/system_log.php")) { // Logging library + echo "Error in installation: could not load the System Log library."; + exit; }
if (!@include_once(dirname(__FILE__) . "/lib/export.php")) { // Export library
|