summaryrefslogtreecommitdiffstatshomepage
path: root/www/ajax/getlinkedtags.php
diff options
context:
space:
mode:
authorGravatar Christian Weiske2011-08-07 17:04:33 +0200
committerGravatar Christian Weiske2011-08-07 17:04:33 +0200
commit2a22f9d0a515ccae37359dd703ef0070f023084b (patch)
treecfa745ed2ebbfef246f4baaa969d98b956029a6e /www/ajax/getlinkedtags.php
parent57d3cc84e5b12a3a1ff68a2044ef1dc4a22c9aea (diff)
parentdd29ad13eb1c3dd11fa67c533f7538fb0932218b (diff)
downloadscuttle-2a22f9d0a515ccae37359dd703ef0070f023084b.tar.gz
scuttle-2a22f9d0a515ccae37359dd703ef0070f023084b.zip
Merge branch '0.98'
Diffstat (limited to 'www/ajax/getlinkedtags.php')
-rw-r--r--www/ajax/getlinkedtags.php7
1 files changed, 3 insertions, 4 deletions
diff --git a/www/ajax/getlinkedtags.php b/www/ajax/getlinkedtags.php
index d8ddb5b..9bb3b1f 100644
--- a/www/ajax/getlinkedtags.php
+++ b/www/ajax/getlinkedtags.php
@@ -1,13 +1,12 @@
<?php
/**
- * Returns a list of tags linked to the given one,
+ * Returns a list of tags linked to the given one(s),
* suitable for jsTree consumption.
*
* Accepted GET parameters:
*
* @param string $tag Tag for which the children tags shall be returned
- * Multiple tags (separated with space or "+") are
- * supported.
+ * Multiple tags (separated with comma) are supported.
* If no tag is given, all top-level tags are loaded.
* @param integer $uId User ID to fetch the tags for
* @param boolean $parent Load parent tags
@@ -32,7 +31,7 @@ $tag = isset($_GET['tag']) ? $_GET['tag'] : null;
$uId = isset($_GET['uId']) ? (int)$_GET['uId'] : 0;
$loadParentTags = isset($_GET['parent']) ? (bool)$_GET['parent'] : false;
-$tags = explode(' ', trim($tag));
+$tags = explode(',', trim($tag));
if (count($tags) == 1 && $tags[0] == '') {
//no tags
$tags = array();