From: Niklas Laxström Date: Mon, 22 Oct 2007 20:45:58 +0000 (+0000) Subject: * Support grammar here too X-Git-Tag: 1.31.0-rc.0~51100 X-Git-Url: http://git.cyclocoop.org/?a=commitdiff_plain;h=3aa031f1c9b950e08300aca7e8eabab986d0add2;p=lhc%2Fweb%2Fwiklou.git * Support grammar here too --- diff --git a/includes/Skin.php b/includes/Skin.php index 40f8b9f71d..0c5eaa1ed6 100644 --- a/includes/Skin.php +++ b/includes/Skin.php @@ -1225,7 +1225,8 @@ 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. - return $this->makeKnownLink( wfMsgForContent( $page ), wfMsg( $desc ) ); + return $this->makeKnownLink( wfMsgForContent( $page ), + wfMsgExt( $desc, array( 'parsemag', 'escape' ) ) ); } }