diff options
author | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-09-23 16:37:53 +0000 |
---|---|---|
committer | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-09-23 16:37:53 +0000 |
commit | 2d0bd94c643add43312294bab13789b16461878a (patch) | |
tree | 55ddcd00a42e34f7fa91eb423a164f04aa86c6cb /engine/start.php | |
parent | bd194e620b935b3f4d0d7f212025144abbdd0ef8 (diff) | |
download | elgg-2d0bd94c643add43312294bab13789b16461878a.tar.gz elgg-2d0bd94c643add43312294bab13789b16461878a.tar.bz2 |
The cache library is now loaded before the main library boot.
git-svn-id: https://code.elgg.org/elgg/trunk@2106 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/start.php')
-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 dc785974b..9df474842 100644 --- a/engine/start.php +++ b/engine/start.php @@ -51,6 +51,11 @@ if (!@include_once(dirname(__FILE__) . "/lib/install.php")) { // Installation library echo "Error in installation: could not load the installation library."; exit; + }
+
+ if (!@include_once(dirname(__FILE__) . "/lib/cache.php")) { // Installation library
+ echo "Error in installation: could not load the cache library.";
+ exit;
} // Use fallback view until sanitised |