diff options
author | Brion Vibber <brion@pobox.com> | 2009-12-02 09:47:02 -0800 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2009-12-03 12:58:48 -0800 |
commit | c89b10ffe4adb1df724b6a7c5c31b42c7dd3376b (patch) | |
tree | fbe23c5841722fdc18ff895e9078c39e3a82e940 /lib/util.php | |
parent | 9e0f89ba4ff1695c0137faa89c08f8b5c60050ac (diff) |
Code style cleanup: dropped some unnecessary =& reference assignments where they're used only out of habit for PHP 4-style object semantics
Diffstat (limited to 'lib/util.php')
-rw-r--r-- | lib/util.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/util.php b/lib/util.php index 99a0a1db3..ab046e871 100644 --- a/lib/util.php +++ b/lib/util.php @@ -127,7 +127,7 @@ function common_check_user($nickname, $password) if (0 == strcmp(common_munge_password($password, $user->id), $user->password)) { //internal checking passed - $authenticatedUser =& $user; + $authenticatedUser = $user; } } } |