diff options
author | Andrew Manning <tamanning@zoho.com> | 2016-07-01 06:36:25 -0400 |
---|---|---|
committer | Andrew Manning <tamanning@zoho.com> | 2016-07-01 06:36:25 -0400 |
commit | 0630609d6e60085f20d1430fd4044775dd9af5e9 (patch) | |
tree | 2556d3a10cf6328dbed962060888f74584b791db /Zotlabs/Daemon/Cron.php | |
parent | 205924ff294e5c0d9c57ed9a36dc899fcdd9c460 (diff) | |
parent | 7371e0862543922b65eac920e128ca4ef1348b13 (diff) | |
download | volse-hubzilla-0630609d6e60085f20d1430fd4044775dd9af5e9.tar.gz volse-hubzilla-0630609d6e60085f20d1430fd4044775dd9af5e9.tar.bz2 volse-hubzilla-0630609d6e60085f20d1430fd4044775dd9af5e9.zip |
Merge remote-tracking branch 'upstream/dev' into wiki
Diffstat (limited to 'Zotlabs/Daemon/Cron.php')
-rw-r--r-- | Zotlabs/Daemon/Cron.php | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/Zotlabs/Daemon/Cron.php b/Zotlabs/Daemon/Cron.php index f23cb14dc..d5b41274b 100644 --- a/Zotlabs/Daemon/Cron.php +++ b/Zotlabs/Daemon/Cron.php @@ -41,7 +41,6 @@ class Cron { require_once('include/sharedwithme.php'); apply_updates(); - // expire any expired mail q("delete from mail where expires != '%s' and expires < %s ", @@ -93,6 +92,18 @@ class Cron { intval($rr['id']) ); if($x) { + $z = q("select * from item where id = %d", + intval($message_id) + ); + if($z) { + xchan_query($z); + $sync_item = fetch_post_tags($z); + build_sync_packet($sync_item[0]['uid'], + [ + 'item' => [ encode_item($sync_item[0],true) ] + ] + ); + } Master::Summon(array('Notifier','wall-new',$rr['id'])); } } |