From: Rob Church Date: Tue, 27 Mar 2007 14:34:43 +0000 (+0000) Subject: Give the username field an identifier so the label is "linked" to it again X-Git-Tag: 1.31.0-rc.0~53588 X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/categories/modifier.php?a=commitdiff_plain;h=59ac0477285197a702d260a451346a72c84e293a;p=lhc%2Fweb%2Fwiklou.git Give the username field an identifier so the label is "linked" to it again --- diff --git a/includes/SpecialListusers.php b/includes/SpecialListusers.php index f0ac1252c8..543d041bf3 100644 --- a/includes/SpecialListusers.php +++ b/includes/SpecialListusers.php @@ -137,7 +137,7 @@ class UsersPager extends AlphabeticPager { # Username field $out .= Xml::label( wfMsg( 'listusersfrom' ), 'offset' ) . ' ' . - Xml::input( 'username', 20, $this->requestedUser ) . ' '; + Xml::input( 'username', 20, $this->requestedUser, array( 'id' => 'offset' ) ) . ' '; if( $this->mLimit ) $out .= Xml::hidden( 'limit', $this->mLimit );