aboutsummaryrefslogtreecommitdiff
path: root/engine/lib/objects.php
diff options
context:
space:
mode:
authoricewing <icewing@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-06-09 17:08:26 +0000
committericewing <icewing@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-06-09 17:08:26 +0000
commitf2b8841f68f4a0c47a06fb063413b7b2317a9533 (patch)
tree776e3080ef8e4fc2d1f34b48c0726b89a24f3311 /engine/lib/objects.php
parentf5c36149efa0b7adca4cc1e27000d3f5a4d21291 (diff)
downloadelgg-f2b8841f68f4a0c47a06fb063413b7b2317a9533.tar.gz
elgg-f2b8841f68f4a0c47a06fb063413b7b2317a9533.tar.bz2
git-svn-id: https://code.elgg.org/elgg/trunk@842 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/lib/objects.php')
-rw-r--r--engine/lib/objects.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/engine/lib/objects.php b/engine/lib/objects.php
index f838308f4..7ade3b475 100644
--- a/engine/lib/objects.php
+++ b/engine/lib/objects.php
@@ -195,8 +195,8 @@
$guid = (int)$guid;
- /*$row = retrieve_cached_entity_row($guid);
- if ($row)
+ $row = retrieve_cached_entity_row($guid);
+ if ($row->isFullyLoaded())
{
// We have already cached this object, so retrieve its value from the cache
if ($CONFIG->debug)
@@ -205,13 +205,13 @@
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");
- //}
+ }
}
/**