aboutsummaryrefslogtreecommitdiff
path: root/www/tags.php
diff options
context:
space:
mode:
authorChristian Weiske <cweiske@cweiske.de>2013-03-20 20:00:25 +0100
committerChristian Weiske <cweiske@cweiske.de>2013-03-20 20:00:25 +0100
commit85e2ccd942fc67944c9324e71097f426abf75a01 (patch)
treee7a8f71c4937fccb7686b8ae9d5e5664cfd84d40 /www/tags.php
parentfc4c79df8a6fb6c82a3552260d43271fede24ed2 (diff)
downloadsemanticscuttle-85e2ccd942fc67944c9324e71097f426abf75a01.tar.gz
semanticscuttle-85e2ccd942fc67944c9324e71097f426abf75a01.tar.bz2
remove php4-style object reference passing #2
Diffstat (limited to 'www/tags.php')
-rw-r--r--www/tags.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/www/tags.php b/www/tags.php
index c56b97f..3e2cd5f 100644
--- a/www/tags.php
+++ b/www/tags.php
@@ -109,9 +109,9 @@ $tplVars['currenttag'] = $cat;
$tplVars['sidebar_blocks'] = array('linked', 'related', 'menu2');//array('linked', 'related', 'popular');
$tplVars['subtitlehtml'] = $pagetitle;
$tplVars['bookmarkCount'] = $start + 1;
-$bookmarks =& $bookmarkservice->getBookmarks($start, $perpage, NULL, $cat, NULL, getSortOrder());
+$bookmarks = $bookmarkservice->getBookmarks($start, $perpage, NULL, $cat, NULL, getSortOrder());
$tplVars['total'] = $bookmarks['total'];
-$tplVars['bookmarks'] =& $bookmarks['bookmarks'];
+$tplVars['bookmarks'] = $bookmarks['bookmarks'];
$tplVars['cat_url'] = createURL('bookmarks', '%1$s/%2$s');
$tplVars['nav_url'] = createURL('tags', '%2$s%3$s');