From 85e2ccd942fc67944c9324e71097f426abf75a01 Mon Sep 17 00:00:00 2001 From: Christian Weiske Date: Wed, 20 Mar 2013 20:00:25 +0100 Subject: remove php4-style object reference passing #2 --- www/alltags.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'www/alltags.php') diff --git a/www/alltags.php b/www/alltags.php index 43ad1cb..16af7fd 100644 --- a/www/alltags.php +++ b/www/alltags.php @@ -63,8 +63,8 @@ if (isset($user) && $user != '') { $userid = NULL; } -$tags =& $b2tservice->getTags($userid); -$tplVars['tags'] =& $b2tservice->tagCloud($tags, 5, 90, 225, getSortOrder()); +$tags = $b2tservice->getTags($userid); +$tplVars['tags'] = $b2tservice->tagCloud($tags, 5, 90, 225, getSortOrder()); $tplVars['user'] = $user; if (isset($userid)) { -- cgit v1.2.3-54-g00ecf