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/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'www/index.php') diff --git a/www/index.php b/www/index.php index 7fbb84c..007aae0 100644 --- a/www/index.php +++ b/www/index.php @@ -100,7 +100,7 @@ $tplVars['bookmarkCount'] = $start + 1; $bookmarks = $bookmarkservice->getBookmarks($start, $perpage, NULL, NULL, NULL, getSortOrder(), NULL, 0, NULL); $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('index', '%3$s'); $tplVars['summarizeLinkedTags'] = true; -- cgit v1.2.3-54-g00ecf