more fixes for forum notifications handling: do not count likes/dislikes if likes notifications are disabled and also do not show like activities when clicking a forum notification and like notifications are disabled
This commit is contained in:
parent
75f7b1e261
commit
de32b0bba5
@ -258,6 +258,10 @@ class Network extends \Zotlabs\Web\Controller {
|
|||||||
}
|
}
|
||||||
elseif($pf && $unseen && $nouveau) {
|
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)
|
// 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'",
|
$p = q("SELECT oid AS parent FROM term WHERE uid = %d AND ttype = %d AND term = '%s'",
|
||||||
intval(local_channel()),
|
intval(local_channel()),
|
||||||
@ -269,7 +273,7 @@ class Network extends \Zotlabs\Web\Controller {
|
|||||||
if($p_str)
|
if($p_str)
|
||||||
$p_sql = " OR item.parent IN ( $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 {
|
else {
|
||||||
// This is for threaded view cid queries (e.g. if a forum is selected from the forum filter)
|
// This is for threaded view cid queries (e.g. if a forum is selected from the forum filter)
|
||||||
|
@ -650,7 +650,7 @@ class Ping extends \Zotlabs\Web\Controller {
|
|||||||
$p_sql = (($p_str) ? "OR parent IN ( $p_str )" : '');
|
$p_sql = (($p_str) ? "OR parent IN ( $p_str )" : '');
|
||||||
|
|
||||||
$r = q("select count(id) as unseen from item
|
$r = q("select count(id) as unseen from item
|
||||||
where uid = %d and ( owner_xchan = '%s' OR author_xchan = '%s' $p_sql ) and item_unseen = 1 $item_normal",
|
where uid = %d and ( owner_xchan = '%s' OR author_xchan = '%s' $p_sql ) and item_unseen = 1 $item_normal $sql_extra",
|
||||||
intval(local_channel()),
|
intval(local_channel()),
|
||||||
dbesc($forums[$x]['xchan_hash']),
|
dbesc($forums[$x]['xchan_hash']),
|
||||||
dbesc($forums[$x]['xchan_hash'])
|
dbesc($forums[$x]['xchan_hash'])
|
||||||
|
Reference in New Issue
Block a user