From: Niklas Laxström Date: Sat, 26 Apr 2008 07:20:13 +0000 (+0000) Subject: * Allow grammar etc in summary messages X-Git-Tag: 1.31.0-rc.0~48064 X-Git-Url: http://git.cyclocoop.org/%24image?a=commitdiff_plain;h=66fbd2d12fa972ffae115a99bd388feafb44bd55;p=lhc%2Fweb%2Fwiklou.git * Allow grammar etc in summary messages --- diff --git a/includes/SpecialPage.php b/includes/SpecialPage.php index 2e331c587f..1245d79767 100644 --- a/includes/SpecialPage.php +++ b/includes/SpecialPage.php @@ -814,7 +814,7 @@ class SpecialPage $msg = $wgContLang->lc( $this->name() ) . '-summary'; $out = wfMsgNoTrans( $msg ); if ( ! wfEmptyMsg( $msg, $out ) and $out !== '' and ! $this->including() ) { - $wgOut->addWikiText( $out ); + $wgOut->addWikiMsg( $msg ); } }