From d78040a1dfee66943ff398f660ffed4dd95753e4 Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Thu, 17 Sep 2009 02:24:38 +0000 Subject: [PATCH] Actually declare $wgOut ;) --- includes/specials/SpecialUserrights.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/specials/SpecialUserrights.php b/includes/specials/SpecialUserrights.php index 996f877ed3..f8cae80506 100644 --- a/includes/specials/SpecialUserrights.php +++ b/includes/specials/SpecialUserrights.php @@ -47,7 +47,7 @@ class UserrightsPage extends SpecialPage { public function execute( $par ) { // If the visitor doesn't have permissions to assign or remove // any groups, it's a bit silly to give them the user search prompt. - global $wgUser, $wgRequest; + global $wgUser, $wgRequest, $wgOut; if( $par ) { $this->mTarget = $par; -- 2.20.1