aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/docs/CHANGELOG.html1
-rw-r--r--phpBB/feed.php7
2 files changed, 1 insertions, 7 deletions
diff --git a/phpBB/docs/CHANGELOG.html b/phpBB/docs/CHANGELOG.html
index 3e4bb9c6c7..c6bb7e2243 100644
--- a/phpBB/docs/CHANGELOG.html
+++ b/phpBB/docs/CHANGELOG.html
@@ -123,7 +123,6 @@
<li>[Change] Log activation through inactive users ACP. (Bug #30145)</li>
<li>[Change] Send time of last item instead of current time in ATOM Feeds. (Bug #53305)</li>
<li>[Change] Use em dash instead of hyphen/minus as separator in ATOM Feeds item statistics. (Bug #53565)</li>
- <li>[Change] Cache overall, forums, topics and news feeds for anonymous users and bots.</li>
<li>[Change] Alter ACP user quick tools interface to reduce confusion with the delete operation.</li>
</ul>
diff --git a/phpBB/feed.php b/phpBB/feed.php
index a7c6f831a3..ffaeaa5bf1 100644
--- a/phpBB/feed.php
+++ b/phpBB/feed.php
@@ -442,7 +442,7 @@ class phpbb_feed_base
/**
* Default cache time of entries in seconds
*/
- var $cache_time = 90;
+ var $cache_time = 0; // 0 important
/**
* Separator for title elements to separate items (for example forum / topic)
@@ -944,11 +944,6 @@ class phpbb_feed_forums extends phpbb_feed_base
class phpbb_feed_news extends phpbb_feed_base
{
- /**
- * Longer cache time for the news feed
- */
- var $cache_time = 180;
-
function set_keys()
{
global $config;