From 97ac595c85af90d4011f123a822bc660926462eb Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Mon, 15 Jun 2009 11:27:48 +0000 Subject: [PATCH] (bug 19202) Follow-up to r51819: fix incorrect conversion. Put wfMsgForContent back. --- includes/Skin.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/Skin.php b/includes/Skin.php index 866493f03d..b2ccb66f88 100644 --- a/includes/Skin.php +++ b/includes/Skin.php @@ -1562,7 +1562,7 @@ END; // Otherwise, we display the link for the user, described in their // language (which may or may not be the same as the default language), // but we make the link target be the one site-wide page. - $title = Title::newFromText( $page ); + $title = Title::newFromText( wfMsgForContent( $page ) ); return $this->linkKnown( $title, wfMsgExt( $desc, array( 'parsemag', 'escapenoentities' ) ) -- 2.20.1