From 848c08d97f1c6170b795ae22c19956f58ffdffd1 Mon Sep 17 00:00:00 2001 From: Alexandre Emsenhuber Date: Wed, 2 Jul 2008 19:52:52 +0000 Subject: [PATCH] Fix for r36876: use the page name instead of 'recentchanges' to show "Related changes" instead of "Recent changes" in Special:Recentchangeslinked --- includes/specials/SpecialRecentchanges.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ); -- 2.20.1