diff options
author | Christian Weiske <cweiske@cweiske.de> | 2013-03-20 20:00:25 +0100 |
---|---|---|
committer | Christian Weiske <cweiske@cweiske.de> | 2013-03-20 20:00:25 +0100 |
commit | 85e2ccd942fc67944c9324e71097f426abf75a01 (patch) | |
tree | e7a8f71c4937fccb7686b8ae9d5e5664cfd84d40 /www/users.php | |
parent | fc4c79df8a6fb6c82a3552260d43271fede24ed2 (diff) | |
download | semanticscuttle-85e2ccd942fc67944c9324e71097f426abf75a01.tar.gz semanticscuttle-85e2ccd942fc67944c9324e71097f426abf75a01.tar.bz2 |
remove php4-style object reference passing #2
Diffstat (limited to 'www/users.php')
-rw-r--r-- | www/users.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/www/users.php b/www/users.php index a357b56..9d6c655 100644 --- a/www/users.php +++ b/www/users.php @@ -49,7 +49,7 @@ $tplVars['loadjs'] = true; $tplVars['sidebar_blocks'] = array('recent', 'popular'); $tplVars['subtitle'] = filter($pagetitle); -$tplVars['users'] =& $userservice->getUsers(); +$tplVars['users'] = $userservice->getUsers(); //$tplVars['cat_url'] = createURL('tags', '%2$s'); //$tplVars['nav_url'] = createURL('tags', '%2$s%3$s'); |