Code style cleanup: dropped some unnecessary =& reference assignments where they're used only out of habit for PHP 4-style object semantics

This commit is contained in:
Brion Vibber
2009-12-02 09:47:02 -08:00
parent 9e0f89ba4f
commit c89b10ffe4
8 changed files with 20 additions and 20 deletions

View File

@@ -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;
}
}
}