diff options
author | Mario <mario@mariovavti.com> | 2020-10-22 11:33:25 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2020-10-22 11:33:25 +0000 |
commit | 96de38a1f06193d674f8fe89cb1852e0e4abb4cf (patch) | |
tree | 8ae120d73a0e59c4e581d7b63b659ad106b1b672 /Zotlabs/Module/Display.php | |
parent | cef0c2ebb2b16b006eca7dce8ec0b1a95d916dba (diff) | |
download | volse-hubzilla-96de38a1f06193d674f8fe89cb1852e0e4abb4cf.tar.gz volse-hubzilla-96de38a1f06193d674f8fe89cb1852e0e4abb4cf.tar.bz2 volse-hubzilla-96de38a1f06193d674f8fe89cb1852e0e4abb4cf.zip |
adapt notifications and mark item seen handling to play well with client side page caching
Diffstat (limited to 'Zotlabs/Module/Display.php')
-rw-r--r-- | Zotlabs/Module/Display.php | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/Zotlabs/Module/Display.php b/Zotlabs/Module/Display.php index f45f37001..3d61d7018 100644 --- a/Zotlabs/Module/Display.php +++ b/Zotlabs/Module/Display.php @@ -47,7 +47,6 @@ class Display extends \Zotlabs\Web\Controller { } $observer_is_owner = false; - $updateable = false; if(local_channel() && (! $update)) { @@ -274,9 +273,6 @@ class Display extends \Zotlabs\Web\Controller { intval(local_channel()), dbesc($target_item['parent_mid']) ); - if($r) { - $updateable = true; - } } if(! $r) { @@ -318,9 +314,6 @@ class Display extends \Zotlabs\Web\Controller { intval(local_channel()), dbesc($target_item['parent_mid']) ); - if($r) { - $updateable = true; - } } if($r === null) { @@ -432,13 +425,6 @@ class Display extends \Zotlabs\Web\Controller { killme(); } - - if($updateable) { - $x = q("UPDATE item SET item_unseen = 0 where item_unseen = 1 AND uid = %d and parent = %d ", - intval(local_channel()), - intval($r[0]['item_id']) - ); - } $o .= '<div id="content-complete"></div>'; |