From: Alexandre Emsenhuber Date: Wed, 2 Jul 2008 19:52:52 +0000 (+0000) Subject: Fix for r36876: use the page name instead of 'recentchanges' to show "Related changes... X-Git-Tag: 1.31.0-rc.0~46795 X-Git-Url: http://git.cyclocoop.org/%24href?a=commitdiff_plain;h=848c08d97f1c6170b795ae22c19956f58ffdffd1;p=lhc%2Fweb%2Fwiklou.git Fix for r36876: use the page name instead of 'recentchanges' to show "Related changes" instead of "Recent changes" in Special:Recentchangeslinked --- diff --git a/includes/specials/SpecialRecentchanges.php b/includes/specials/SpecialRecentchanges.php index fc1578fc78..5114ee89dd 100644 --- a/includes/specials/SpecialRecentchanges.php +++ b/includes/specials/SpecialRecentchanges.php @@ -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 );