diff options
author | icewing <icewing@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-06-09 13:17:24 +0000 |
---|---|---|
committer | icewing <icewing@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-06-09 13:17:24 +0000 |
commit | 8d4e29a5c8b8caf7b18916a46d1aeed98cdff208 (patch) | |
tree | 2a4144a9fce5d2c93041f81e510f271628f1f819 /engine/lib/users.php | |
parent | c522f28c7cf6c37ddd6b2b2a4bcc3093784f7577 (diff) | |
download | elgg-8d4e29a5c8b8caf7b18916a46d1aeed98cdff208.tar.gz elgg-8d4e29a5c8b8caf7b18916a46d1aeed98cdff208.tar.bz2 |
Marcus Povey <marcus@dushka.co.uk>
* Reverted caching error
git-svn-id: https://code.elgg.org/elgg/trunk@832 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/lib/users.php')
-rw-r--r-- | engine/lib/users.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/engine/lib/users.php b/engine/lib/users.php index 795ec4415..2466170fa 100644 --- a/engine/lib/users.php +++ b/engine/lib/users.php @@ -315,7 +315,7 @@ {
global $CONFIG;
- $row = retrieve_cached_entity_row($guid); + /*$row = retrieve_cached_entity_row($guid); if ($row) { // We have already cached this object, so retrieve its value from the cache @@ -325,7 +325,7 @@ return $row; } else - { + {*/ // Object not cached, load it. if ($CONFIG->debug) error_log("** Sub part of GUID:$guid loaded from DB"); @@ -333,7 +333,7 @@ $guid = (int)$guid;
return get_data_row("SELECT * from {$CONFIG->dbprefix}users_entity where guid=$guid"); - }
+ //}
}
/**
|