* Fix regression -- missing feed links in sidebar on Special:Recentchanges
authorBrion Vibber <brion@users.mediawiki.org>
Wed, 19 Dec 2007 01:33:44 +0000 (01:33 +0000)
committerBrion Vibber <brion@users.mediawiki.org>
Wed, 19 Dec 2007 01:33:44 +0000 (01:33 +0000)
Was removed in r26058 while adding default autodiscovery links to the whole
site, presumably without realizing that this would remove the sidebar links
when one is actually on RC.

RELEASE-NOTES
includes/SpecialRecentchanges.php

index 56deff3..1ae469b 100644 (file)
@@ -252,6 +252,7 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN
 * Allow --record option if parserTests.php to work when using Postgres
 * (bug 12296) Simplify cache epoch in default LocalSettings.php
 * (bug 12346) XML fix when body double-click and click handlers are present
+* Fix regression -- missing feed links in sidebar on Special:Recentchanges
 
 
 == Parser changes in 1.12 ==
index 9ff4637..60a04e0 100644 (file)
@@ -216,6 +216,8 @@ function wfSpecialRecentchanges( $par, $specialPage ) {
                }
 
                // And now for the content
+               $wgOut->setSyndicated( true );
+               
                $list = ChangesList::newFromUser( $wgUser );
                
                if ( $wgAllowCategorizedRecentChanges ) {