diff options
author | Mario <mario@mariovavti.com> | 2024-12-21 11:55:19 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2024-12-21 11:55:19 +0000 |
commit | bd10c1e40af899b4387c72d484444f85c7e8d654 (patch) | |
tree | 409a88d801e74b378ae582115479bce74b1aabc3 /Zotlabs/Module | |
parent | e146eaa8f8a1ad4d0d546a6b7452a84fc3d22a91 (diff) | |
download | volse-hubzilla-bd10c1e40af899b4387c72d484444f85c7e8d654.tar.gz volse-hubzilla-bd10c1e40af899b4387c72d484444f85c7e8d654.tar.bz2 volse-hubzilla-bd10c1e40af899b4387c72d484444f85c7e8d654.zip |
fix anomaly in pubs notification
Diffstat (limited to 'Zotlabs/Module')
-rw-r--r-- | Zotlabs/Module/Sse_bs.php | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Zotlabs/Module/Sse_bs.php b/Zotlabs/Module/Sse_bs.php index cedd80c59..d43548770 100644 --- a/Zotlabs/Module/Sse_bs.php +++ b/Zotlabs/Module/Sse_bs.php @@ -473,7 +473,6 @@ class Sse_bs extends Controller { if ($notifications) { $items = q("SELECT * FROM item WHERE true $uids - AND created <= '%s' AND obj_type NOT IN ('Document', 'Video', 'Audio', 'Image') AND author_xchan != '%s' AND created > '%s' @@ -482,7 +481,6 @@ class Sse_bs extends Controller { $sql_extra2 $sql_extra3 ORDER BY created DESC LIMIT $limit OFFSET $offset", - dbescdate($_SESSION['sse_loadtime']), dbesc(self::$ob_hash), dbescdate($_SESSION['last_login_date'] ?? $_SESSION['static_loadtime']) ); |