fix #923 : correct title for RCLinked special page
authorAntoine Musso <hashar@users.mediawiki.org>
Sun, 3 Jul 2005 19:20:42 +0000 (19:20 +0000)
committerAntoine Musso <hashar@users.mediawiki.org>
Sun, 3 Jul 2005 19:20:42 +0000 (19:20 +0000)
RELEASE-NOTES
includes/SpecialRecentchangeslinked.php

index 427ca70..9204c23 100644 (file)
@@ -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 ===
 
index 7a8b2ad..938a160 100644 (file)
@@ -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)) {