diff options
author | Craig Andrews <candrews@integralblue.com> | 2010-02-24 22:35:22 -0500 |
---|---|---|
committer | Craig Andrews <candrews@integralblue.com> | 2010-02-24 22:35:22 -0500 |
commit | beb776cfd6b9b78d1f192d55e7e8bc311a0d00ea (patch) | |
tree | a7bb4888c9022c8e0d2c17d3781076ef5fafde30 /lib/authorizationplugin.php | |
parent | bdf0dfc30d3c44ee6117e55c1c8faef59654e596 (diff) |
fix "PHP Warning: Call-time pass-by-reference has been deprecated"
Diffstat (limited to 'lib/authorizationplugin.php')
-rw-r--r-- | lib/authorizationplugin.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/authorizationplugin.php b/lib/authorizationplugin.php index 733b0c065..07da9b2d1 100644 --- a/lib/authorizationplugin.php +++ b/lib/authorizationplugin.php @@ -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) { |