From 66fbd2d12fa972ffae115a99bd388feafb44bd55 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Niklas=20Laxstr=C3=B6m?= Date: Sat, 26 Apr 2008 07:20:13 +0000 Subject: [PATCH] * Allow grammar etc in summary messages --- includes/SpecialPage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ); } } -- 2.20.1