From 7e21d3dc8b09c0ab447750897134b96bc755fe07 Mon Sep 17 00:00:00 2001 From: John Du Hart Date: Tue, 7 Feb 2012 11:03:30 +0000 Subject: [PATCH] Fixes Bug 34243 - [Regression] Can't navigate from Special:ListUsers/sysop to other groups Followup r97658 --- includes/specials/SpecialListusers.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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' ) . ' ' . -- 2.20.1