From 9ac0b1cb9f24b68dc4b1e015fb30321ea4293091 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C3=86var=20Arnfj=C3=B6r=C3=B0=20Bjarmason?= Date: Sat, 23 Apr 2005 21:47:10 +0000 Subject: [PATCH] * (bug 1754) Patch by Anders Wegge Jakobsen: Both Atom and RSS were using the same objectcache timestamp, hence if one feed is pulled the other was marked as current as weel, this means that a substantial time could pass until the 'loosing' feed got updated. --- includes/SpecialRecentchanges.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/SpecialRecentchanges.php b/includes/SpecialRecentchanges.php index 5af35a4081..df836a91f6 100644 --- a/includes/SpecialRecentchanges.php +++ b/includes/SpecialRecentchanges.php @@ -215,7 +215,7 @@ function rcOutputFeed( $rows, $feedFormat, $limit, $hideminor, $lastmod ) { return false; } - $timekey = "$wgDBname:rcfeed:timestamp"; + $timekey = "$wgDBname:rcfeed:$feedFormat:timestamp"; $key = "$wgDBname:rcfeed:$feedFormat:limit:$limit:minor:$hideminor"; $feedTitle = $wgSitename . ' - ' . wfMsgForContent( 'recentchanges' ) . -- 2.20.1