From: Alexandre Emsenhuber Date: Sun, 20 Feb 2011 16:36:13 +0000 (+0000) Subject: wfMsgReal() -> wfMsgExt() X-Git-Tag: 1.31.0-rc.0~31856 X-Git-Url: http://git.cyclocoop.org/%40spipnet%40?a=commitdiff_plain;h=0eaba0429deb77b467907c3a0c61602e732c7be9;p=lhc%2Fweb%2Fwiklou.git wfMsgReal() -> wfMsgExt() --- diff --git a/includes/specials/SpecialBlockip.php b/includes/specials/SpecialBlockip.php index 438bc35896..1148d304cb 100644 --- a/includes/specials/SpecialBlockip.php +++ b/includes/specials/SpecialBlockip.php @@ -131,7 +131,7 @@ class IPBlockForm extends SpecialPage { $otherBlockedMsgs = array(); if( $err && $err[0] != 'ipb_already_blocked' ) { $key = array_shift( $err ); - $msg = wfMsgReal( $key, $err ); + $msg = wfMsgExt( $key, 'parsemag', $err ); $wgOut->setSubtitle( wfMsgHtml( 'formerror' ) ); $wgOut->addHTML( Xml::tags( 'p', array( 'class' => 'error' ), $msg ) ); } elseif( $this->BlockAddress !== null ) {