From 0eaba0429deb77b467907c3a0c61602e732c7be9 Mon Sep 17 00:00:00 2001 From: Alexandre Emsenhuber Date: Sun, 20 Feb 2011 16:36:13 +0000 Subject: [PATCH] wfMsgReal() -> wfMsgExt() --- includes/specials/SpecialBlockip.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ) { -- 2.20.1