From: Niklas Laxström Date: Wed, 17 Jan 2007 23:43:35 +0000 (+0000) Subject: * Label was not working X-Git-Tag: 1.31.0-rc.0~54321 X-Git-Url: http://git.cyclocoop.org/clavettes/images/siteon3.jpg?a=commitdiff_plain;h=09ce82527328c1442df03a13991e0fca67fe95df;p=lhc%2Fweb%2Fwiklou.git * Label was not working --- diff --git a/includes/SpecialListusers.php b/includes/SpecialListusers.php index b079434442..dd220865eb 100644 --- a/includes/SpecialListusers.php +++ b/includes/SpecialListusers.php @@ -81,7 +81,7 @@ class ListUsersPage extends QueryPage { # Group drop-down list $out .= wfElement( 'label', array( 'for' => 'group' ), wfMsg( 'group' ) ) . ' '; - $out .= wfOpenElement( 'select', array( 'name' => 'group' ) ); + $out .= wfOpenElement( 'select', array( 'name' => 'group', 'id' => 'group' ) ); $out .= wfElement( 'option', array( 'value' => '' ), wfMsg( 'group-all' ) ); # Item for "all groups" $groups = User::getAllGroups(); foreach( $groups as $group ) {