From b91cc79f32395fe87b161bbf9f37c49f7a218dae Mon Sep 17 00:00:00 2001 From: Antoine Musso Date: Sun, 3 Jul 2005 19:20:42 +0000 Subject: [PATCH] fix #923 : correct title for RCLinked special page --- RELEASE-NOTES | 2 +- includes/SpecialRecentchangeslinked.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 427ca7061e..9204c23342 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -459,7 +459,7 @@ of MediaWiki:Newpagetext) to &action=edit, if page is new. * Special:Booksources checks if custom list page exists before using it * (bug 1170) Fixed linktrail for da: and ru: * (bug 2683) Really fix apostrophe escaping for toolbox tips - +* (bug 923) Fix title and subtitle for rclinked special page === Caveats === diff --git a/includes/SpecialRecentchangeslinked.php b/includes/SpecialRecentchangeslinked.php index 7a8b2ad0e1..938a160902 100644 --- a/includes/SpecialRecentchangeslinked.php +++ b/includes/SpecialRecentchangeslinked.php @@ -22,7 +22,7 @@ function wfSpecialRecentchangeslinked( $par = NULL ) { $target = isset($par) ? $par : $wgRequest->getText( 'target' ); $hideminor = $wgRequest->getBool( 'hideminor' ) ? 1 : 0; - $wgOut->setPagetitle( wfMsg( "recentchanges" ) ); + $wgOut->setPagetitle( wfMsg( 'recentchangeslinked' ) ); $sk = $wgUser->getSkin(); if (is_null($target)) { -- 2.20.1