Index: trunk/phase3/includes/specials/SpecialListusers.php |
— | — | @@ -185,12 +185,13 @@ |
186 | 186 | |
187 | 187 | function getPageHeader( ) { |
188 | 188 | global $wgScript; |
189 | | - $self = $this->getTitle(); |
| 189 | + // @todo Add a PrefixedBaseDBKey |
| 190 | + list( $self ) = explode( '/', $this->getTitle()->getPrefixedDBkey() ); |
190 | 191 | |
191 | 192 | # Form tag |
192 | 193 | $out = Xml::openElement( 'form', array( 'method' => 'get', 'action' => $wgScript, 'id' => 'mw-listusers-form' ) ) . |
193 | 194 | Xml::fieldset( wfMsg( 'listusers' ) ) . |
194 | | - Html::hidden( 'title', $self->getPrefixedDbKey() ); |
| 195 | + Html::hidden( 'title', $self ); |
195 | 196 | |
196 | 197 | # Username field |
197 | 198 | $out .= Xml::label( wfMsg( 'listusersfrom' ), 'offset' ) . ' ' . |