From 59c9a21fbed266e9c7599e3603d523afacb1523a Mon Sep 17 00:00:00 2001 From: Aryeh Gregor Date: Fri, 4 Jan 2008 01:25:13 +0000 Subject: [PATCH] Remove useless & that was breaking strict standards. --- includes/SpecialPage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/SpecialPage.php b/includes/SpecialPage.php index cbd4400036..83e0df4d1d 100644 --- a/includes/SpecialPage.php +++ b/includes/SpecialPage.php @@ -630,7 +630,7 @@ class SpecialPage * @param User $user The user to check * @return bool Does the user have permission to view the page? */ - public function userCanExecute( &$user ) { + public function userCanExecute( $user ) { return $user->isAllowed( $this->mRestriction ); } -- 2.20.1