aboutsummaryrefslogtreecommitdiffstats
path: root/include/zot.php
diff options
context:
space:
mode:
authorAndrew Manning <tamanning@zoho.com>2015-11-20 21:57:10 -0500
committerAndrew Manning <tamanning@zoho.com>2015-11-20 21:57:10 -0500
commitfee85030933bd15788bde7c0e019803a27a55f84 (patch)
treea2755c3dbd77b3210f2420a162a28030e3fc2865 /include/zot.php
parent6083cd255990c82380a85029b3951160eb558ac9 (diff)
parentfabf7081d39481bb22ee27c4beaf96e5529168eb (diff)
downloadvolse-hubzilla-fee85030933bd15788bde7c0e019803a27a55f84.tar.gz
volse-hubzilla-fee85030933bd15788bde7c0e019803a27a55f84.tar.bz2
volse-hubzilla-fee85030933bd15788bde7c0e019803a27a55f84.zip
Merge branch 'master' of https://github.com/redmatrix/hubzilla into url-selected
Diffstat (limited to 'include/zot.php')
-rw-r--r--include/zot.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/zot.php b/include/zot.php
index 0a1a8ee51..23fb9c4ad 100644
--- a/include/zot.php
+++ b/include/zot.php
@@ -1933,11 +1933,12 @@ function remove_community_tag($sender, $arr, $uid) {
return;
}
- q("delete from term where uid = %d and oid = %d and otype = %d and type = %d and term = '%s' and url = '%s'",
+ q("delete from term where uid = %d and oid = %d and otype = %d and type in ( %d, %d ) and term = '%s' and url = '%s'",
intval($uid),
intval($r[0]['id']),
intval(TERM_OBJ_POST),
intval(TERM_HASHTAG),
+ intval(TERM_COMMUNITYTAG),
dbesc($i['object']['title']),
dbesc(get_rel_link($i['object']['link'],'alternate'))
);