diff options
author | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-03-03 12:29:43 +0000 |
---|---|---|
committer | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-03-03 12:29:43 +0000 |
commit | bb04c9c62d2f55e7cef382955893fba934265618 (patch) | |
tree | d1c82ae5e46e040476b840ce71539d2453cc5804 /engine/lib/users.php | |
parent | 603b7c6273af20696a1c3158792dd63b55e784b0 (diff) | |
download | elgg-bb04c9c62d2f55e7cef382955893fba934265618.tar.gz elgg-bb04c9c62d2f55e7cef382955893fba934265618.tar.bz2 |
Removed calls to the deprecated entity cache
git-svn-id: https://code.elgg.org/elgg/trunk@3028 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 03206c65f..bfcea4b72 100644 --- a/engine/lib/users.php +++ b/engine/lib/users.php @@ -344,7 +344,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
@@ -354,7 +354,7 @@ return $row;
}
else
- {
+ {*/
// Object not cached, load it.
if (isset($CONFIG->debug) && $CONFIG->debug == true)
error_log("** Sub part of GUID:$guid loaded from DB");
@@ -362,7 +362,7 @@ $guid = (int)$guid;
return get_data_row("SELECT * from {$CONFIG->dbprefix}users_entity where guid=$guid");
- }
+ //}
}
/**
|