diff options
Diffstat (limited to 'engine/lib/objects.php')
-rw-r--r-- | engine/lib/objects.php | 20 |
1 files changed, 1 insertions, 19 deletions
diff --git a/engine/lib/objects.php b/engine/lib/objects.php index a81925ce1..7e21550aa 100644 --- a/engine/lib/objects.php +++ b/engine/lib/objects.php @@ -215,25 +215,7 @@ function get_object_entity_as_row($guid) { global $CONFIG; $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 (isset($CONFIG->debug) && $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"); } /** |