aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2018-06-30 23:57:25 -0700
committerzotlabs <mike@macgirvin.com>2018-06-30 23:57:25 -0700
commit5d7d30f7898171f0a7bd687bf4888695b2dd8af3 (patch)
treeaa2b255d803495d0df21dc6520f006cec017b691 /Zotlabs
parent63a3f5149a32de1b3fb2f47535f061c53496bde2 (diff)
downloadvolse-hubzilla-5d7d30f7898171f0a7bd687bf4888695b2dd8af3.tar.gz
volse-hubzilla-5d7d30f7898171f0a7bd687bf4888695b2dd8af3.tar.bz2
volse-hubzilla-5d7d30f7898171f0a7bd687bf4888695b2dd8af3.zip
propagate expired posts to other networks
Diffstat (limited to 'Zotlabs')
-rw-r--r--Zotlabs/Daemon/Cron.php11
1 files changed, 8 insertions, 3 deletions
diff --git a/Zotlabs/Daemon/Cron.php b/Zotlabs/Daemon/Cron.php
index 01c43262a..d1c516f96 100644
--- a/Zotlabs/Daemon/Cron.php
+++ b/Zotlabs/Daemon/Cron.php
@@ -50,14 +50,19 @@ class Cron {
// expire any expired items
- $r = q("select id from item where expires > '2001-01-01 00:00:00' and expires < %s
+ $r = q("select id,item_wall from item where expires > '2001-01-01 00:00:00' and expires < %s
and item_deleted = 0 ",
db_utcnow()
);
if($r) {
require_once('include/items.php');
- foreach($r as $rr)
- drop_item($rr['id'],false);
+ foreach($r as $rr) {
+ drop_item($rr['id'],false,(($rr['item_wall']) ? DROPITEM_PHASE1 : DROPITEM_NORMAL));
+ if($rr['item_wall']) {
+ // The notifier isn't normally invoked unless item_drop is interactive.
+ Zotlabs\Daemon\Master::Summon( [ 'Notifier', 'drop', $rr['id'] ] );
+ }
+ }
}