summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorCraig Andrews <candrews@integralblue.com>2010-02-24 22:35:22 -0500
committerCraig Andrews <candrews@integralblue.com>2010-02-24 22:35:22 -0500
commitbeb776cfd6b9b78d1f192d55e7e8bc311a0d00ea (patch)
treea7bb4888c9022c8e0d2c17d3781076ef5fafde30 /lib
parentbdf0dfc30d3c44ee6117e55c1c8faef59654e596 (diff)
fix "PHP Warning: Call-time pass-by-reference has been deprecated"
Diffstat (limited to 'lib')
-rw-r--r--lib/authorizationplugin.php2
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) {