From: Mark A. Hershberger Date: Sat, 11 Feb 2012 01:53:17 +0000 (+0000) Subject: re r111186: remove extra form tag. X-Git-Tag: 1.31.0-rc.0~24777 X-Git-Url: http://git.cyclocoop.org/%24self?a=commitdiff_plain;h=dd85820324735e88440c3663b85af8fbc93e677f;p=lhc%2Fweb%2Fwiklou.git re r111186: remove extra form tag. --- diff --git a/includes/ChangeTags.php b/includes/ChangeTags.php index 562aac33c4..4b9b0e0415 100644 --- a/includes/ChangeTags.php +++ b/includes/ChangeTags.php @@ -219,7 +219,6 @@ class ChangeTags { $html = implode( ' ', $data ); $html .= "\n" . Xml::element( 'input', array( 'type' => 'submit', 'value' => wfMsg( 'tag-filter-submit' ) ) ); $html .= "\n" . Html::hidden( 'title', $title->getPrefixedText() ); - $html = Xml::tags( 'form', array( 'action' => $title->getLocalURL(), 'method' => 'get' ), $html ); $html = Xml::tags( 'form', array( 'action' => $title->getLocalURL(), 'class' => 'tagfilter-form', 'method' => 'get' ), $html ); return $html;