From: John Du Hart Date: Tue, 7 Feb 2012 11:03:30 +0000 (+0000) Subject: Fixes Bug 34243 - [Regression] Can't navigate from Special:ListUsers/sysop to other... X-Git-Tag: 1.31.0-rc.0~24896 X-Git-Url: http://git.cyclocoop.org/%24href?a=commitdiff_plain;h=7e21d3dc8b09c0ab447750897134b96bc755fe07;p=lhc%2Fweb%2Fwiklou.git Fixes Bug 34243 - [Regression] Can't navigate from Special:ListUsers/sysop to other groups Followup r97658 --- diff --git a/includes/specials/SpecialListusers.php b/includes/specials/SpecialListusers.php index 1cfae55e2c..d743712dc9 100644 --- a/includes/specials/SpecialListusers.php +++ b/includes/specials/SpecialListusers.php @@ -185,12 +185,13 @@ class UsersPager extends AlphabeticPager { function getPageHeader( ) { global $wgScript; - $self = $this->getTitle(); + // @todo Add a PrefixedBaseDBKey + list( $self ) = explode( '/', $this->getTitle()->getPrefixedDBkey() ); # Form tag $out = Xml::openElement( 'form', array( 'method' => 'get', 'action' => $wgScript, 'id' => 'mw-listusers-form' ) ) . Xml::fieldset( wfMsg( 'listusers' ) ) . - Html::hidden( 'title', $self->getPrefixedDbKey() ); + Html::hidden( 'title', $self ); # Username field $out .= Xml::label( wfMsg( 'listusersfrom' ), 'offset' ) . ' ' .