From: Raimond Spekking Date: Thu, 17 Sep 2009 12:44:55 +0000 (+0000) Subject: Do not lower case the message text. This is wrong for some languages, at least for... X-Git-Tag: 1.31.0-rc.0~39683 X-Git-Url: http://git.cyclocoop.org/%40spipnet%40?a=commitdiff_plain;h=bf38b304ae2db5d403c7eda49c4e0bc9d4c6d51f;p=lhc%2Fweb%2Fwiklou.git Do not lower case the message text. This is wrong for some languages, at least for German. --- diff --git a/includes/specials/SpecialAllmessages.php b/includes/specials/SpecialAllmessages.php index 417e36736f..b88b6a6317 100644 --- a/includes/specials/SpecialAllmessages.php +++ b/includes/specials/SpecialAllmessages.php @@ -143,7 +143,7 @@ class AllmessagesTablePager extends TablePager { global $wgLang, $wgContLang, $wgRequest; - $this->talk = $wgLang->lc( htmlspecialchars( wfMsg( 'talkpagelinktext' ) ) ); + $this->talk = htmlspecialchars( wfMsg( 'talkpagelinktext' ) ); $this->lang = ( $langObj ? $langObj : $wgContLang ); $this->langcode = $this->lang->getCode();