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 /data/templates/default/sidebar.block.common.php | |
parent | fc4c79df8a6fb6c82a3552260d43271fede24ed2 (diff) | |
download | semanticscuttle-85e2ccd942fc67944c9324e71097f426abf75a01.tar.gz semanticscuttle-85e2ccd942fc67944c9324e71097f426abf75a01.tar.bz2 |
remove php4-style object reference passing #2
Diffstat (limited to 'data/templates/default/sidebar.block.common.php')
-rw-r--r-- | data/templates/default/sidebar.block.common.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/data/templates/default/sidebar.block.common.php b/data/templates/default/sidebar.block.common.php index 951ed80..dfc83ef 100644 --- a/data/templates/default/sidebar.block.common.php +++ b/data/templates/default/sidebar.block.common.php @@ -1,7 +1,7 @@ <?php $b2tservice =SemanticScuttle_Service_Factory::get('Bookmark2Tag'); -$commonTags =& $b2tservice->getRelatedTagsByHash($hash); -$commonTags =& $b2tservice->tagCloud($commonTags, 5, 90, 225, 'alphabet_asc'); +$commonTags = $b2tservice->getRelatedTagsByHash($hash); +$commonTags = $b2tservice->tagCloud($commonTags, 5, 90, 225, 'alphabet_asc'); if ($commonTags && count($commonTags) > 0) { ?> |