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 68f43bc74..956f0ac3e 100644 --- a/engine/start.php +++ b/engine/start.php @@ -23,6 +23,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/export.php")) { // Export library + echo "Error in installation: could not load the Export library."; + exit; }
/**
|