aboutsummaryrefslogtreecommitdiff
path: root/www/search.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/search.php
parentfc4c79df8a6fb6c82a3552260d43271fede24ed2 (diff)
downloadsemanticscuttle-85e2ccd942fc67944c9324e71097f426abf75a01.tar.gz
semanticscuttle-85e2ccd942fc67944c9324e71097f426abf75a01.tar.bz2
remove php4-style object reference passing #2
Diffstat (limited to 'www/search.php')
-rw-r--r--www/search.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/www/search.php b/www/search.php
index a5c13e3..e4977ad 100644
--- a/www/search.php
+++ b/www/search.php
@@ -115,7 +115,7 @@ if (is_null($terms)) {
}
}
-$bookmarks =& $bookmarkservice->getBookmarks(
+$bookmarks = $bookmarkservice->getBookmarks(
$start, $perpage, $s_user, NULL, $terms, getSortOrder(),
$s_watchlist, $s_start, $s_end
);
@@ -147,7 +147,7 @@ $tplVars['terms'] = $terms;
$tplVars['pagetitle'] = T_('Search Bookmarks');
$tplVars['bookmarkCount'] = $start + 1;
$tplVars['total'] = $bookmarks['total'];
-$tplVars['bookmarks'] =& $bookmarks['bookmarks'];
+$tplVars['bookmarks'] = $bookmarks['bookmarks'];
$tplVars['cat_url'] = createURL('tags', '%2$s');
$tplVars['nav_url'] = createURL('search', $range .'/'. $terms .'/%3$s');