Fix for r36876: use the page name instead of 'recentchanges' to show "Related changes...
authorAlexandre Emsenhuber <ialex@users.mediawiki.org>
Wed, 2 Jul 2008 19:52:52 +0000 (19:52 +0000)
committerAlexandre Emsenhuber <ialex@users.mediawiki.org>
Wed, 2 Jul 2008 19:52:52 +0000 (19:52 +0000)
includes/specials/SpecialRecentchanges.php

index fc1578f..5114ee8 100644 (file)
@@ -437,7 +437,7 @@ class SpecialRecentChanges extends SpecialPage {
                $panelString = implode( "\n", $panel );
 
                $wgOut->addHTML(
-                       Xml::fieldset( wfMsg( 'recentchanges' ), $panelString, array( 'class' => 'rcoptions' ) )
+                       Xml::fieldset( wfMsg( strtolower( $this->mName )  ), $panelString, array( 'class' => 'rcoptions' ) )
                );
 
                $this->setBottomText( $wgOut, $opts );