From c5510ff302a6899691197e88dc9db08734e4d004 Mon Sep 17 00:00:00 2001 From: icewing Date: Mon, 9 Jun 2008 15:03:47 +0000 Subject: git-svn-id: https://code.elgg.org/elgg/trunk@834 36083f99-b078-4883-b0ff-0f9b5a30f544 --- engine/lib/objects.php | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) (limited to 'engine') diff --git a/engine/lib/objects.php b/engine/lib/objects.php index a51665b5b..3c7448137 100644 --- a/engine/lib/objects.php +++ b/engine/lib/objects.php @@ -193,9 +193,25 @@ { global $CONFIG; - $guid = (int)$guid; + $guid = (int)$guid; + + /*$row = retrieve_cached_entity_row($guid); + if ($row) + { + // We have already cached this object, so retrieve its value from the cache + if ($CONFIG->debug) + error_log("** Retrieving sub part of GUID:$guid from cache"); + + return $row; + } + else + {*/ + // Object not cached, load it. + if ($CONFIG->debug) + error_log("** Sub part of GUID:$guid loaded from DB"); - return get_data_row("SELECT * from {$CONFIG->dbprefix}objects_entity where guid=$guid"); + return get_data_row("SELECT * from {$CONFIG->dbprefix}objects_entity where guid=$guid"); + //} } /** -- cgit v1.2.3