From: Ævar Arnfjörð Bjarmason Date: Mon, 8 May 2006 01:07:05 +0000 (+0000) Subject: * Fixed invalid XML, please test with application/xhtml+xml when changing the output X-Git-Tag: 1.31.0-rc.0~57205 X-Git-Url: https://git.cyclocoop.org/%27.WWW_URL.%27admin/?a=commitdiff_plain;h=114f18abf6296e3209e51c24181b285fe50f050d;p=lhc%2Fweb%2Fwiklou.git * Fixed invalid XML, please test with application/xhtml+xml when changing the output --- diff --git a/includes/SpecialListusers.php b/includes/SpecialListusers.php index 6b1ebb431b..028665c1b0 100644 --- a/includes/SpecialListusers.php +++ b/includes/SpecialListusers.php @@ -82,7 +82,7 @@ class ListUsersPage extends QueryPage { $self = $this->getTitle(); # Form tag - $out = wfElement( 'form', array( 'method' => 'post', 'action' => $self->getLocalUrl() ) ); + $out = wfOpenElement( 'form', array( 'method' => 'post', 'action' => $self->getLocalUrl() ) ); # Group drop-down list $out .= wfElement( 'label', array( 'for' => 'group' ), wfMsg( 'group' ) ) . ' ';