aboutsummaryrefslogtreecommitdiff
path: root/engine/start.php
diff options
context:
space:
mode:
authoricewing <icewing@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-03-28 19:00:52 +0000
committericewing <icewing@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-03-28 19:00:52 +0000
commit5aa0bbb5bef7265fb570b400f7966b8411295f9e (patch)
tree19608c2590713e34f4ebaea6ee7e5635a059e562 /engine/start.php
parent42798f58cb8c291e435c9db413d3a479940bf3b1 (diff)
downloadelgg-5aa0bbb5bef7265fb570b400f7966b8411295f9e.tar.gz
elgg-5aa0bbb5bef7265fb570b400f7966b8411295f9e.tar.bz2
Marcus Povey <marcus@dushka.co.uk>
* Preloads export library - todo: do this better! git-svn-id: https://code.elgg.org/elgg/trunk@290 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/start.php')
-rw-r--r--engine/start.php5
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;
}
/**