From b7f32924a83758934e2e5888a2d0e7219a4c1cc9 Mon Sep 17 00:00:00 2001 From: Raimond Spekking Date: Fri, 18 Feb 2011 18:35:08 +0000 Subject: [PATCH] Fix invalid HTML introduced in r68096: Xml::buildForm() adds
too --- includes/specials/SpecialListfiles.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/includes/specials/SpecialListfiles.php b/includes/specials/SpecialListfiles.php index 6155648055..592d793847 100644 --- a/includes/specials/SpecialListfiles.php +++ b/includes/specials/SpecialListfiles.php @@ -211,10 +211,8 @@ class ImageListPager extends TablePager { ) ); $s = Html::openElement( 'form', array( 'method' => 'get', 'action' => $wgScript, 'id' => 'mw-listfiles-form' ) ) . Xml::fieldset( wfMsg( 'listfiles' ) ) . - Html::openElement( 'table', array( 'id' => 'mw-listfiles-table' ) ) . Xml::buildForm( $inputForm, 'table_pager_limit_submit' ) . $this->getHiddenFields( array( 'limit', 'ilsearch', 'user' ) ) . - Html::closeElement( 'table' ) . Html::closeElement( 'fieldset' ) . Html::closeElement( 'form' ) . "\n"; return $s; -- 2.20.1