Index: trunk/phase3/includes/SpecialListusers.php |
— | — | @@ -115,14 +115,17 @@ |
116 | 116 | } |
117 | 117 | |
118 | 118 | function getPageHeader( ) { |
119 | | - global $wgRequest; |
| 119 | + global $wgScript, $wgRequest; |
120 | 120 | $self = $this->getTitle(); |
121 | 121 | |
122 | 122 | # Form tag |
123 | | - $out = Xml::openElement( 'form', array( 'method' => 'get', 'action' => $self->getLocalUrl() ) ) . |
| 123 | + $out = Xml::openElement( 'form', array( 'method' => 'get', 'action' => $wgScript ) ) . |
124 | 124 | '<fieldset>' . |
125 | 125 | Xml::element( 'legend', array(), wfMsg( 'listusers' ) ); |
126 | 126 | |
| 127 | + # Title |
| 128 | + $out .= Xml::hidden( 'title', $self->getPrefixedUrl() ); |
| 129 | + |
127 | 130 | # Username field |
128 | 131 | $out .= Xml::label( wfMsg( 'listusersfrom' ), 'offset' ) . ' ' . |
129 | 132 | Xml::input( 'username', 20, $this->requestedUser, array( 'id' => 'offset' ) ) . ' '; |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -188,6 +188,7 @@ |
189 | 189 | * Avoid PHP notice errors when doing HTTP proxy purges for an empty list |
190 | 190 | * As intended, *skip* the HTTP proxy purges when doing HTCP purges |
191 | 191 | * (bug 9696) Fix handling of brace transformations in "pagemovedtext" |
| 192 | +* (bug 10325) Fix regression in form action on Special:Listusers |
192 | 193 | |
193 | 194 | == API changes since 1.10 == |
194 | 195 | |