aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Channel.php
diff options
context:
space:
mode:
authorAndrew Manning <andrewmanning@grid.reticu.li>2017-08-05 11:24:03 +0000
committerAndrew Manning <andrewmanning@grid.reticu.li>2017-08-05 11:24:03 +0000
commit03ca0bfa696a76e20ac00525676c9943a25b0370 (patch)
treeec838248a1be34522ce698210c57169180261442 /Zotlabs/Module/Channel.php
parentba62f144823fd2ee31e3c19eb2c1cb10782c9184 (diff)
parenta618f70f56efdcaaf9da6dcfcab9cce6a933303b (diff)
downloadvolse-hubzilla-03ca0bfa696a76e20ac00525676c9943a25b0370.tar.gz
volse-hubzilla-03ca0bfa696a76e20ac00525676c9943a25b0370.tar.bz2
volse-hubzilla-03ca0bfa696a76e20ac00525676c9943a25b0370.zip
Merge branch 'dev' of https://github.com/redmatrix/hubzilla into doco
Diffstat (limited to 'Zotlabs/Module/Channel.php')
-rw-r--r--Zotlabs/Module/Channel.php10
1 files changed, 7 insertions, 3 deletions
diff --git a/Zotlabs/Module/Channel.php b/Zotlabs/Module/Channel.php
index a44984c97..c006d65d4 100644
--- a/Zotlabs/Module/Channel.php
+++ b/Zotlabs/Module/Channel.php
@@ -358,9 +358,13 @@ class Channel extends \Zotlabs\Web\Controller {
}
if($is_owner && $update_unseen) {
- $r = q("UPDATE item SET item_unseen = 0 where item_unseen = 1 and item_wall = 1 AND uid = %d $update_unseen",
- intval(local_channel())
- );
+ $x = [ 'channel_id' => local_channel(), 'update' => 'unset' ];
+ call_hooks('update_unseen',$x);
+ if($x['update'] === 'unset' || intval($x['update'])) {
+ $r = q("UPDATE item SET item_unseen = 0 where item_unseen = 1 and item_wall = 1 AND uid = %d $update_unseen",
+ intval(local_channel())
+ );
+ }
}