diff options
author | cash <cash.costello@gmail.com> | 2013-04-13 14:10:02 -0400 |
---|---|---|
committer | cash <cash.costello@gmail.com> | 2013-04-13 14:10:02 -0400 |
commit | 726007e5730f83340ea8ab294a9f5951586f42fc (patch) | |
tree | 0843506c2e7e1840a08dc9bf0a05dfeba9f6659e /engine/lib/upgrades/2010061501.php | |
parent | 5dd3d179f43b47231dab5dab5d5d9482a9810ef7 (diff) | |
download | elgg-726007e5730f83340ea8ab294a9f5951586f42fc.tar.gz elgg-726007e5730f83340ea8ab294a9f5951586f42fc.tar.bz2 |
introduces _elgg_invalidate_query_cache() to dry up the db query cache code
Diffstat (limited to 'engine/lib/upgrades/2010061501.php')
-rw-r--r-- | engine/lib/upgrades/2010061501.php | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/engine/lib/upgrades/2010061501.php b/engine/lib/upgrades/2010061501.php index b23ad0820..744c28fd5 100644 --- a/engine/lib/upgrades/2010061501.php +++ b/engine/lib/upgrades/2010061501.php @@ -45,7 +45,7 @@ if ($dbversion < 2009100701) { } } - global $DB_QUERY_CACHE, $ENTITY_CACHE; + global $ENTITY_CACHE; /** Upgrade file locations @@ -60,7 +60,9 @@ if ($dbversion < 2009100701) { $users = mysql_query("SELECT guid, username FROM {$CONFIG->dbprefix}users_entity WHERE username != ''", $link); while ($user = mysql_fetch_object($users)) { - $DB_QUERY_CACHE = $ENTITY_CACHE = array(); + $ENTITY_CACHE = array(); + _elgg_invalidate_query_cache(); + $to = $CONFIG->dataroot . user_file_matrix($user->guid); foreach (array('1_0', '1_1', '1_6') as $version) { |