diff options
author | Thomas Willingham <founder@kakste.com> | 2014-01-15 23:01:02 +0000 |
---|---|---|
committer | Thomas Willingham <founder@kakste.com> | 2014-01-15 23:01:02 +0000 |
commit | 9f66e5aef325666a0fa6e3f035eaa2c3b35b5b00 (patch) | |
tree | c4b261f1cbbf85d4153ecee64fe285cc5aa38ec9 /include/items.php | |
parent | 9addc83520adada78ad339edd6abe666f65b7059 (diff) | |
parent | 762a5432494711bf481943a0dee72cf65f7a04bb (diff) | |
download | volse-hubzilla-9f66e5aef325666a0fa6e3f035eaa2c3b35b5b00.tar.gz volse-hubzilla-9f66e5aef325666a0fa6e3f035eaa2c3b35b5b00.tar.bz2 volse-hubzilla-9f66e5aef325666a0fa6e3f035eaa2c3b35b5b00.zip |
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'include/items.php')
-rwxr-xr-x | include/items.php | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/include/items.php b/include/items.php index 9a1e5f81b..ea46df9bf 100755 --- a/include/items.php +++ b/include/items.php @@ -2259,7 +2259,7 @@ function tag_deliver($uid,$item_id) { if($terms) { foreach($terms as $term) { - if(($term['term'] == $u[0]['channel_name']) && link_compare($term['url'],$link)) { + if((strcasecmp($term['term'],$u[0]['channel_name']) == 0) && link_compare($term['url'],$link)) { $mention = true; break; } @@ -2322,8 +2322,10 @@ function tag_deliver($uid,$item_id) { } - if((! $mention) && (! $union)) + if((! $mention) && (! $union)) { + logger('tag_deliver: no mention and no union.'); return; + } // tgroup delivery - setup a second delivery chain |