aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2012-08-26 18:40:23 +0200
committerAndreas Fischer <bantu@phpbb.com>2012-10-30 18:50:25 -0400
commit4f65a003344a3aeec0c5f608e990c2860146d39e (patch)
treed77aa7cac3b5238f79d037c757f682ba8c58babf /phpBB/includes
parent1f248dab6f9413a67f08e008b36c9fc64489d1ce (diff)
downloadforums-4f65a003344a3aeec0c5f608e990c2860146d39e.tar
forums-4f65a003344a3aeec0c5f608e990c2860146d39e.tar.gz
forums-4f65a003344a3aeec0c5f608e990c2860146d39e.tar.bz2
forums-4f65a003344a3aeec0c5f608e990c2860146d39e.tar.xz
forums-4f65a003344a3aeec0c5f608e990c2860146d39e.zip
[ticket/10875] Remove useless assignment from phpbb_cache_driver_memory.
sql_save() no longer takes $query_result as a reference, thus this assignment is a no-op. PHPBB3-10875
Diffstat (limited to 'phpBB/includes')
-rw-r--r--phpBB/includes/cache/driver/memory.php2
1 files changed, 0 insertions, 2 deletions
diff --git a/phpBB/includes/cache/driver/memory.php b/phpBB/includes/cache/driver/memory.php
index e0771ab1d3..bc08494c0c 100644
--- a/phpBB/includes/cache/driver/memory.php
+++ b/phpBB/includes/cache/driver/memory.php
@@ -334,8 +334,6 @@ abstract class phpbb_cache_driver_memory extends phpbb_cache_driver_base
$this->_write('sql_' . $hash, $this->sql_rowset[$query_id], $ttl);
- $query_result = $query_id;
-
return $query_id;
}