From 81676b78983f9107c9d59222e32710f5ef58b038 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Wed, 19 Dec 2007 01:33:44 +0000 Subject: [PATCH] * 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. --- RELEASE-NOTES | 1 + includes/SpecialRecentchanges.php | 2 ++ 2 files changed, 3 insertions(+) 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 ) { -- 2.20.1