aboutsummaryrefslogtreecommitdiff
path: root/engine/lib/api.php
diff options
context:
space:
mode:
authorben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-09-23 16:37:53 +0000
committerben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-09-23 16:37:53 +0000
commit2d0bd94c643add43312294bab13789b16461878a (patch)
tree55ddcd00a42e34f7fa91eb423a164f04aa86c6cb /engine/lib/api.php
parentbd194e620b935b3f4d0d7f212025144abbdd0ef8 (diff)
downloadelgg-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/lib/api.php')
-rw-r--r--engine/lib/api.php6
1 files changed, 2 insertions, 4 deletions
diff --git a/engine/lib/api.php b/engine/lib/api.php
index b60f90572..a44a4fc72 100644
--- a/engine/lib/api.php
+++ b/engine/lib/api.php
@@ -11,8 +11,6 @@
* @link http://elgg.org/
*/
- require_once('cache.php');
-
// Result classes /////////////////////////////////////////////////////////////////////////
/**
@@ -241,7 +239,7 @@
/**
* Clean out old stuff.
*
- */
+ */
public function __destruct()
{
global $CONFIG;
@@ -252,7 +250,7 @@
$expires = $time-$age;
delete_data("DELETE from {$CONFIG->dbprefix}hmac_cache where ts<$expires");
- }
+ }
}
// API Call functions /////////////////////////////////////////////////////////////////////