diff options
author | Andreas Fischer <bantu@phpbb.com> | 2009-12-16 18:13:41 +0000 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2009-12-16 18:13:41 +0000 |
commit | d5c16e4c8f5fe0859e127d979a1988c96e6bba8a (patch) | |
tree | 7c4c2765e0fb5e5f1627ef3f6ddcec405ba84753 /phpBB | |
parent | 4168104fcc9c21553cb55ca15b3f3a3f35b55655 (diff) | |
download | forums-d5c16e4c8f5fe0859e127d979a1988c96e6bba8a.tar forums-d5c16e4c8f5fe0859e127d979a1988c96e6bba8a.tar.gz forums-d5c16e4c8f5fe0859e127d979a1988c96e6bba8a.tar.bz2 forums-d5c16e4c8f5fe0859e127d979a1988c96e6bba8a.tar.xz forums-d5c16e4c8f5fe0859e127d979a1988c96e6bba8a.zip |
I've got to take this back. Revert r10316 partly.
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10343 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/docs/CHANGELOG.html | 1 | ||||
-rw-r--r-- | phpBB/feed.php | 7 |
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; |