From: Brion Vibber Date: Wed, 19 Dec 2007 01:33:44 +0000 (+0000) Subject: * Fix regression -- missing feed links in sidebar on Special:Recentchanges X-Git-Tag: 1.31.0-rc.0~50352 X-Git-Url: https://git.cyclocoop.org/admin/%7B%7Blocalurl:Special:UserLogin%7D%7D?a=commitdiff_plain;h=81676b78983f9107c9d59222e32710f5ef58b038;p=lhc%2Fweb%2Fwiklou.git * Fix regression -- missing feed links in sidebar on Special:Recentchanges 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. --- diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 56deff3927..1ae469bcc5 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -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 == diff --git a/includes/SpecialRecentchanges.php b/includes/SpecialRecentchanges.php index 9ff4637cd7..60a04e00a4 100644 --- a/includes/SpecialRecentchanges.php +++ b/includes/SpecialRecentchanges.php @@ -216,6 +216,8 @@ function wfSpecialRecentchanges( $par, $specialPage ) { } // And now for the content + $wgOut->setSyndicated( true ); + $list = ChangesList::newFromUser( $wgUser ); if ( $wgAllowCategorizedRecentChanges ) {