More ancient deprecated functions:
[lhc/web/wiklou.git] / includes / specials / SpecialRevisiondelete.php
index cad4a0b..f77fc34 100644 (file)
@@ -1,5 +1,6 @@
 <?php
 /**
+ * Implements Special:Revisiondelete
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * with this program; if not, write to the Free Software Foundation, Inc.,
  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  * http://www.gnu.org/copyleft/gpl.html
+ *
+ * @file
+ * @ingroup SpecialPage
  */
 
 /**
  * Special page allowing users with the appropriate permissions to view
  * and hide revisions. Log items can also be hidden.
  *
- * @file
  * @ingroup SpecialPage
  */
-
 class SpecialRevisionDelete extends UnlistedSpecialPage {
        /** Skin object */
        var $skin;
@@ -412,10 +414,10 @@ class SpecialRevisionDelete extends UnlistedSpecialPage {
                                        '</td>' .
                                "</tr>\n" .
                                Xml::closeElement( 'table' ) .
-                               Xml::hidden( 'wpEditToken', $wgUser->editToken() ) .
-                               Xml::hidden( 'target', $this->targetObj->getPrefixedText() ) .
-                               Xml::hidden( 'type', $this->typeName ) .
-                               Xml::hidden( 'ids', implode( ',', $this->ids ) ) .
+                               Html::hidden( 'wpEditToken', $wgUser->editToken() ) .
+                               Html::hidden( 'target', $this->targetObj->getPrefixedText() ) .
+                               Html::hidden( 'type', $this->typeName ) .
+                               Html::hidden( 'ids', implode( ',', $this->ids ) ) .
                                Xml::closeElement( 'fieldset' ) . "\n";
                } else {
                        $out = '';