summaryrefslogtreecommitdiffstatshomepage
path: root/www/api/tags_get.php
diff options
context:
space:
mode:
authorGravatar Christian Weiske2013-03-20 20:00:25 +0100
committerGravatar Christian Weiske2013-03-20 20:00:25 +0100
commit85e2ccd942fc67944c9324e71097f426abf75a01 (patch)
treee7a8f71c4937fccb7686b8ae9d5e5664cfd84d40 /www/api/tags_get.php
parentfc4c79df8a6fb6c82a3552260d43271fede24ed2 (diff)
downloadscuttle-85e2ccd942fc67944c9324e71097f426abf75a01.tar.gz
scuttle-85e2ccd942fc67944c9324e71097f426abf75a01.zip
remove php4-style object reference passing #2
Diffstat (limited to 'www/api/tags_get.php')
-rw-r--r--www/api/tags_get.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/www/api/tags_get.php b/www/api/tags_get.php
index 06a40d9..c0fb83d 100644
--- a/www/api/tags_get.php
+++ b/www/api/tags_get.php
@@ -13,7 +13,7 @@ $b2tservice =SemanticScuttle_Service_Factory::get('Bookmark2Tag');
// Get the tags relevant to the passed-in variables.
-$tags =& $b2tservice->getTags($userservice->getCurrentUserId());
+$tags = $b2tservice->getTags($userservice->getCurrentUserId());
// Set up the XML file and output all the tags.
echo '<?xml version="1.0" standalone="yes" ?'.">\r\n";