diff options
Diffstat (limited to 'engine')
-rw-r--r-- | engine/lib/objects.php | 20 |
1 files changed, 18 insertions, 2 deletions
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"); + //}
}
/**
|