aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2015-02-03 18:24:16 +0100
committerMarc Alexander <admin@m-a-styles.de>2015-02-03 18:24:16 +0100
commit4e06ab16f008a48944f1dfde1d06394126e54541 (patch)
tree73290c3f275538c0388957feaa25a54a462981e5
parent1f2cb69c8aeedf8cb388fdbce366b0e2e356332a (diff)
downloadforums-4e06ab16f008a48944f1dfde1d06394126e54541.tar
forums-4e06ab16f008a48944f1dfde1d06394126e54541.tar.gz
forums-4e06ab16f008a48944f1dfde1d06394126e54541.tar.bz2
forums-4e06ab16f008a48944f1dfde1d06394126e54541.tar.xz
forums-4e06ab16f008a48944f1dfde1d06394126e54541.zip
[ticket/13348] Remove unnecessary global $cache
$cache is not used in the method get_item(). PHPBB3-13348
-rw-r--r--phpBB/feed.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/feed.php b/phpBB/feed.php
index 775fdf7230..7e1a761694 100644
--- a/phpBB/feed.php
+++ b/phpBB/feed.php
@@ -620,7 +620,7 @@ class phpbb_feed_base
function get_item()
{
- global $db, $cache;
+ global $db;
if (!isset($this->result))
{