From 3aa031f1c9b950e08300aca7e8eabab986d0add2 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Niklas=20Laxstr=C3=B6m?= Date: Mon, 22 Oct 2007 20:45:58 +0000 Subject: [PATCH] * Support grammar here too --- includes/Skin.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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' ) ) ); } } -- 2.20.1