aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Daemon
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2018-09-17 18:40:49 -0700
committerzotlabs <mike@macgirvin.com>2018-09-17 18:40:49 -0700
commitcc5ef57843f4012f7319a0ffd687fe26950a7790 (patch)
tree6245b5f85f5a844c926dab48acf8633fc864bcd5 /Zotlabs/Daemon
parentfdc89d1b8972c2bad896eb3d42086b0e91e3c01b (diff)
downloadvolse-hubzilla-cc5ef57843f4012f7319a0ffd687fe26950a7790.tar.gz
volse-hubzilla-cc5ef57843f4012f7319a0ffd687fe26950a7790.tar.bz2
volse-hubzilla-cc5ef57843f4012f7319a0ffd687fe26950a7790.zip
fix listeners table create and expire federation had a syntax error
Diffstat (limited to 'Zotlabs/Daemon')
-rw-r--r--Zotlabs/Daemon/Cron.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Daemon/Cron.php b/Zotlabs/Daemon/Cron.php
index d1c516f96..25e49b817 100644
--- a/Zotlabs/Daemon/Cron.php
+++ b/Zotlabs/Daemon/Cron.php
@@ -60,7 +60,7 @@ class Cron {
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'] ] );
+ Master::Summon( [ 'Notifier', 'drop', $rr['id'] ] );
}
}
}