diff options
Diffstat (limited to 'engine/lib/users.php')
-rw-r--r-- | engine/lib/users.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/engine/lib/users.php b/engine/lib/users.php index 33a192005..d494cfb7c 100644 --- a/engine/lib/users.php +++ b/engine/lib/users.php @@ -316,8 +316,8 @@ {
global $CONFIG;
- /*$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) @@ -326,7 +326,7 @@ return $row; } else - {*/ + { // Object not cached, load it. if ($CONFIG->debug) error_log("** Sub part of GUID:$guid loaded from DB"); @@ -334,7 +334,7 @@ $guid = (int)$guid;
return get_data_row("SELECT * from {$CONFIG->dbprefix}users_entity where guid=$guid"); - //}
+ }
}
/**
|