aboutsummaryrefslogtreecommitdiffstats
path: root/mod/tagger.php
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-10-24 17:25:49 -0700
committerFriendika <info@friendika.com>2011-10-24 17:25:49 -0700
commit790c4a4e1a583b9e8ad909f8d562a62c8d700ad5 (patch)
tree735f346b698a40d306f0c621cc6cd1d03a982f1f /mod/tagger.php
parent3b33c0d075fcce7f10468ad749742950077768b3 (diff)
downloadvolse-hubzilla-790c4a4e1a583b9e8ad909f8d562a62c8d700ad5.tar.gz
volse-hubzilla-790c4a4e1a583b9e8ad909f8d562a62c8d700ad5.tar.bz2
volse-hubzilla-790c4a4e1a583b9e8ad909f8d562a62c8d700ad5.zip
tag display with item
Diffstat (limited to 'mod/tagger.php')
-rw-r--r--mod/tagger.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/mod/tagger.php b/mod/tagger.php
index 4127aaadd..7114ed0ce 100644
--- a/mod/tagger.php
+++ b/mod/tagger.php
@@ -11,7 +11,9 @@ function tagger_content(&$a) {
return;
}
- $term= notags(trim($_GET['term']));
+ $term = notags(trim($_GET['term']));
+ // no commas allowed
+ $term = str_replace(',','',$term);
if(! $term)
return;