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 @@
[Change] Log activation through inactive users ACP. (Bug #30145)
[Change] Send time of last item instead of current time in ATOM Feeds. (Bug #53305)
[Change] Use em dash instead of hyphen/minus as separator in ATOM Feeds item statistics. (Bug #53565)
- [Change] Cache overall, forums, topics and news feeds for anonymous users and bots.
[Change] Alter ACP user quick tools interface to reduce confusion with the delete operation.
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;