From 1f63dcd625dd8a69626a44c39e1f07d3f1389f48 Mon Sep 17 00:00:00 2001 From: Raimond Spekking Date: Tue, 16 Dec 2008 13:03:19 +0000 Subject: [PATCH] Follow up for r44669: simplfy code. Thanks to IAlex and Nikerabbit --- includes/specials/SpecialUndelete.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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' ); -- 2.20.1