summaryrefslogtreecommitdiff
path: root/actions/userbyid.php
diff options
context:
space:
mode:
authorBrion Vibber <brion@pobox.com>2009-12-02 09:47:02 -0800
committerBrion Vibber <brion@pobox.com>2009-12-03 12:58:48 -0800
commitc89b10ffe4adb1df724b6a7c5c31b42c7dd3376b (patch)
treefbe23c5841722fdc18ff895e9078c39e3a82e940 /actions/userbyid.php
parent9e0f89ba4ff1695c0137faa89c08f8b5c60050ac (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 'actions/userbyid.php')
-rw-r--r--actions/userbyid.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/userbyid.php b/actions/userbyid.php
index 86a61f20b..ebff7e4a7 100644
--- a/actions/userbyid.php
+++ b/actions/userbyid.php
@@ -69,7 +69,7 @@ class UserbyidAction extends Action
if (!$id) {
$this->clientError(_('No id.'));
}
- $user =& User::staticGet($id);
+ $user = User::staticGet($id);
if (!$user) {
$this->clientError(_('No such user.'));
}