diff options
author | Mario <mario@mariovavti.com> | 2018-11-05 09:42:07 +0100 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2018-11-05 09:42:07 +0100 |
commit | 92ea3ef72036c39601b69565f3e03fa44ad9aef7 (patch) | |
tree | 24a2bd3b6cb0285655eaf78ff4fb5d59635df9e3 /Zotlabs/Module/Network.php | |
parent | de0fab78edd469ee0b6572e157e901ccf0078c6a (diff) | |
parent | de32b0bba55d8570214546df5d3f50397308001f (diff) | |
download | volse-hubzilla-92ea3ef72036c39601b69565f3e03fa44ad9aef7.tar.gz volse-hubzilla-92ea3ef72036c39601b69565f3e03fa44ad9aef7.tar.bz2 volse-hubzilla-92ea3ef72036c39601b69565f3e03fa44ad9aef7.zip |
Merge branch 'dev' into 'dev'
more fixes for forum notifications handling: do not count likes/dislikes if…
See merge request hubzilla/core!1367
Diffstat (limited to 'Zotlabs/Module/Network.php')
-rw-r--r-- | Zotlabs/Module/Network.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Zotlabs/Module/Network.php b/Zotlabs/Module/Network.php index 294e11c52..b93faa612 100644 --- a/Zotlabs/Module/Network.php +++ b/Zotlabs/Module/Network.php @@ -258,6 +258,10 @@ class Network extends \Zotlabs\Web\Controller { } elseif($pf && $unseen && $nouveau) { + $vnotify = get_pconfig(local_channel(), 'system', 'vnotify'); + if(! ($vnotify & VNOTIFY_LIKE)) + $likes_sql = " AND verb NOT IN ('" . dbesc(ACTIVITY_LIKE) . "', '" . dbesc(ACTIVITY_DISLIKE) . "') "; + // This is for nouveau view public forum cid queries (if a forum notification is clicked) $p = q("SELECT oid AS parent FROM term WHERE uid = %d AND ttype = %d AND term = '%s'", intval(local_channel()), @@ -269,7 +273,7 @@ class Network extends \Zotlabs\Web\Controller { if($p_str) $p_sql = " OR item.parent IN ( $p_str ) "; - $sql_extra = " AND ( owner_xchan = '" . protect_sprintf(dbesc($cid_r[0]['abook_xchan'])) . "' OR owner_xchan = '" . protect_sprintf(dbesc($cid_r[0]['abook_xchan'])) . "' $p_sql ) AND item_unseen = 1 "; + $sql_extra = " AND ( owner_xchan = '" . protect_sprintf(dbesc($cid_r[0]['abook_xchan'])) . "' OR owner_xchan = '" . protect_sprintf(dbesc($cid_r[0]['abook_xchan'])) . "' $p_sql ) AND item_unseen = 1 $likes_sql "; } else { // This is for threaded view cid queries (e.g. if a forum is selected from the forum filter) |