From 60f4153293a6457b4bb472584aea19b262a13778 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Sat, 6 Jan 2007 00:51:21 +0000 Subject: [PATCH] * Recentchanges RSS/Atom feeds now use a separate message for the description to avoid cluttering it with useless wiki formatting --- RELEASE-NOTES | 2 ++ includes/SpecialRecentchanges.php | 2 +- languages/messages/MessagesEn.php | 1 + 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 83a4f5d9b7..7831b8ce0d 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -467,6 +467,8 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN * The MediaWiki namespace is no longer pre-filled with default messages on install. All default messages will be removed from the MediaWiki namespace on upgrade. +* Recentchanges RSS/Atom feeds now use a separate message for the description + to avoid cluttering it with useless wiki formatting == Languages updated == diff --git a/includes/SpecialRecentchanges.php b/includes/SpecialRecentchanges.php index ef03d36e54..3b8d69f2b9 100644 --- a/includes/SpecialRecentchanges.php +++ b/includes/SpecialRecentchanges.php @@ -332,7 +332,7 @@ function rcOutputFeed( $rows, $feedFormat, $limit, $hideminor, $lastmod ) { ' [' . $wgContLanguageCode . ']'; $feed = new $wgFeedClasses[$feedFormat]( $feedTitle, - htmlspecialchars( wfMsgForContent( 'recentchangestext' ) ), + htmlspecialchars( wfMsgForContent( 'recentchanges-feed-description' ) ), $wgTitle->getFullUrl() ); /** diff --git a/languages/messages/MessagesEn.php b/languages/messages/MessagesEn.php index d5653c4dc6..fea5c6682b 100644 --- a/languages/messages/MessagesEn.php +++ b/languages/messages/MessagesEn.php @@ -1251,6 +1251,7 @@ Unselected groups will not be changed. You can deselect a group with CTRL + Left 'recentchanges' => 'Recent changes', 'recentchanges-url' => 'Special:Recentchanges', 'recentchangestext' => 'Track the most recent changes to the wiki on this page.', +'recentchanges-feed-description' => 'Track the most recent changes to the wiki in this feed.', 'rcnote' => "Below are the last $1 changes in the last $2 days, as of $3.", 'rcnotefrom' => "Below are the changes since $2 (up to $1 shown).", 'rclistfrom' => "Show new changes starting from $1", -- 2.20.1