From: Raimond Spekking Date: Tue, 16 Dec 2008 13:03:19 +0000 (+0000) Subject: Follow up for r44669: simplfy code. Thanks to IAlex and Nikerabbit X-Git-Tag: 1.31.0-rc.0~43936 X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/operations/?a=commitdiff_plain;h=1f63dcd625dd8a69626a44c39e1f07d3f1389f48;p=lhc%2Fweb%2Fwiklou.git Follow up for r44669: simplfy code. Thanks to IAlex and Nikerabbit --- diff --git a/includes/specials/SpecialUndelete.php b/includes/specials/SpecialUndelete.php index 6bcba24dff..1361fa0598 100644 --- a/includes/specials/SpecialUndelete.php +++ b/includes/specials/SpecialUndelete.php @@ -700,7 +700,7 @@ class UndeleteForm { return; } - $wgOut->addHTML( wfMsgExt( 'undeletepagetext', array( 'parseinline' ), $wgLang->formatNum( $result->numRows() ) ) ); + $wgOut->addWikiMsg( 'undeletepagetext', $wgLang->formatNum( $result->numRows() ) ); $sk = $wgUser->getSkin(); $undelete = SpecialPage::getTitleFor( 'Undelete' );