* (bug 1754) Patch by Anders Wegge Jakobsen: Both Atom and RSS were using the
authorÆvar Arnfjörð Bjarmason <avar@users.mediawiki.org>
Sat, 23 Apr 2005 21:47:10 +0000 (21:47 +0000)
committerÆvar Arnfjörð Bjarmason <avar@users.mediawiki.org>
Sat, 23 Apr 2005 21:47:10 +0000 (21:47 +0000)
  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

index 5af35a4..df836a9 100644 (file)
@@ -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' ) .