From 32dbdb6e00ab735102bd32b868e5fd7963017e98 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Niklas=20Laxstr=C3=B6m?= Date: Thu, 17 Apr 2008 18:56:06 +0000 Subject: [PATCH] * Double-escaping, checkLabel, fixed another label * Do we really need reset button here? --- includes/SpecialUndelete.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/includes/SpecialUndelete.php b/includes/SpecialUndelete.php index 4bc079c428..9a0baa0148 100644 --- a/includes/SpecialUndelete.php +++ b/includes/SpecialUndelete.php @@ -966,8 +966,8 @@ class UndeleteForm { "   " . - Xml::check( 'wpUnsuppress', $this->mUnsuppress, array('id' => 'mw-undelete-unsupress') ) . ' ' . - Xml::label( wfMsgHtml('revdelete-unsuppress'), 'mw-undelete-unsupress' ) . + Xml::checkLabel( wfMsg('revdelete-unsuppress'), 'wpUnsuppress', + 'mw-undelete-unsupress', $this->mUnsuppress ). " "; } else { @@ -987,7 +987,7 @@ class UndeleteForm { Xml::label( wfMsg( 'undeletecomment' ), 'wpComment' ) . " " . - Xml::input( 'wpComment', 50, $this->mComment ) . + Xml::input( 'wpComment', 50, $this->mComment, array( 'id' => 'wpComment' ) ) . " -- 2.20.1