From: Aryeh Gregor Date: Fri, 4 Jan 2008 01:25:13 +0000 (+0000) Subject: Remove useless & that was breaking strict standards. X-Git-Tag: 1.31.0-rc.0~50141 X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/password.php?a=commitdiff_plain;h=59c9a21fbed266e9c7599e3603d523afacb1523a;p=lhc%2Fweb%2Fwiklou.git Remove useless & that was breaking strict standards. --- 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 ); }