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/2013030600-1.8.13-update_user_location-8999eb8bf1bdd9a3.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/2013030600-1.8.13-update_user_location-8999eb8bf1bdd9a3.php')
-rw-r--r-- | engine/lib/upgrades/2013030600-1.8.13-update_user_location-8999eb8bf1bdd9a3.php | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/engine/lib/upgrades/2013030600-1.8.13-update_user_location-8999eb8bf1bdd9a3.php b/engine/lib/upgrades/2013030600-1.8.13-update_user_location-8999eb8bf1bdd9a3.php index b38eb5100..8eccf05e2 100644 --- a/engine/lib/upgrades/2013030600-1.8.13-update_user_location-8999eb8bf1bdd9a3.php +++ b/engine/lib/upgrades/2013030600-1.8.13-update_user_location-8999eb8bf1bdd9a3.php @@ -7,8 +7,6 @@ * This script turns that back into a string. */ -global $DB_QUERY_CACHE; - $ia = elgg_set_ignore_access(true); $options = array( 'type' => 'user', @@ -17,7 +15,7 @@ $options = array( $batch = new ElggBatch('elgg_get_entities', $options); foreach ($batch as $entity) { - $DB_QUERY_CACHE = array(); + _elgg_invalidate_query_cache(); if (is_array($entity->location)) { $entity->location = implode(', ', $entity->location); |