Index: trunk/phase3/includes/specials/SpecialListusers.php |
— | — | @@ -86,7 +86,7 @@ |
87 | 87 | if( $this->requestedUser != '' ) { |
88 | 88 | # Sorted either by account creation or name |
89 | 89 | if( $this->creationSort ) { |
90 | | - $conds[] = 'user_id >= ' . User::idFromName( $this->requestedUser ); |
| 90 | + $conds[] = 'user_id >= ' . intval( User::idFromName( $this->requestedUser ) ); |
91 | 91 | } else { |
92 | 92 | $conds[] = 'user_name >= ' . $dbr->addQuotes( $this->requestedUser ); |
93 | 93 | } |