fix "PHP Warning: Call-time pass-by-reference has been deprecated"

This commit is contained in:
Craig Andrews 2010-02-24 22:35:22 -05:00
parent bdf0dfc30d
commit beb776cfd6
1 changed files with 1 additions and 1 deletions

View File

@ -85,7 +85,7 @@ abstract class AuthorizationPlugin extends Plugin
}
function onStartSetApiUser(&$user) {
return $this->onStartSetUser(&$user);
return $this->onStartSetUser($user);
}
function onStartHasRole($profile, $name, &$has_role) {