diff options
author | git-marijus <mario@mariovavti.com> | 2017-07-28 23:01:39 +0200 |
---|---|---|
committer | git-marijus <mario@mariovavti.com> | 2017-07-28 23:01:39 +0200 |
commit | 9717d4502f460e56d76eb52c244124e2b995677c (patch) | |
tree | cbdf877872300ace860731e11829ed2090d558ad /Zotlabs/Module/Ping.php | |
parent | f9b342c87d4129c457244861b3b841cb9dfe139b (diff) | |
download | volse-hubzilla-9717d4502f460e56d76eb52c244124e2b995677c.tar.gz volse-hubzilla-9717d4502f460e56d76eb52c244124e2b995677c.tar.bz2 volse-hubzilla-9717d4502f460e56d76eb52c244124e2b995677c.zip |
do not show obj_type ACTIVITY_OBJ_FILE under activity notifications and do not mark those read in /network
Diffstat (limited to 'Zotlabs/Module/Ping.php')
-rw-r--r-- | Zotlabs/Module/Ping.php | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Zotlabs/Module/Ping.php b/Zotlabs/Module/Ping.php index ac8c466f8..ddb3a8c12 100644 --- a/Zotlabs/Module/Ping.php +++ b/Zotlabs/Module/Ping.php @@ -400,9 +400,11 @@ class Ping extends \Zotlabs\Web\Controller { $r = q("SELECT id, item_wall FROM item WHERE item_unseen = 1 and uid = %d $item_normal - and author_xchan != '%s'", + AND author_xchan != '%s' + AND obj_type != '%s'", intval(local_channel()), - dbesc($ob_hash) + dbesc($ob_hash), + dbesc(ACTIVITY_OBJ_FILE) ); if($r) { |