From: Brion Vibber Date: Fri, 29 Jun 2007 13:07:59 +0000 (+0000) Subject: * (bug 10406) Fix Special:Listusers filter form for non-ASCII localizations X-Git-Tag: 1.31.0-rc.0~52330 X-Git-Url: https://git.cyclocoop.org/%27.%24link.%27?a=commitdiff_plain;h=54c2dcda9a8e4faef52601b5b0cbed64337f020e;p=lhc%2Fweb%2Fwiklou.git * (bug 10406) Fix Special:Listusers filter form for non-ASCII localizations was misescaped (URL form instead of dbkey form) --- diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 0e22f784a9..db14238f12 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -244,6 +244,8 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN pages * (bug 10184) Site CSS/JS should be included after that added dynamically (e.g. by extensions) +* (bug 10406) Fix Special:Listusers filter form for non-ASCII localizations + == API changes since 1.10 == diff --git a/includes/SpecialListusers.php b/includes/SpecialListusers.php index 51479719d4..d6d4a341b7 100644 --- a/includes/SpecialListusers.php +++ b/includes/SpecialListusers.php @@ -122,7 +122,7 @@ class UsersPager extends AlphabeticPager { $out = Xml::openElement( 'form', array( 'method' => 'get', 'action' => $wgScript ) ) . '
' . Xml::element( 'legend', array(), wfMsg( 'listusers' ) ); - $out .= Xml::hidden( 'title', $self->getPrefixedUrl() ); + $out .= Xml::hidden( 'title', $self->getPrefixedDbKey() ); # Username field $out .= Xml::label( wfMsg( 'listusersfrom' ), 'offset' ) . ' ' .