diff options
author | zotlabs <mike@macgirvin.com> | 2018-09-17 18:40:49 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2018-09-17 18:40:49 -0700 |
commit | cc5ef57843f4012f7319a0ffd687fe26950a7790 (patch) | |
tree | 6245b5f85f5a844c926dab48acf8633fc864bcd5 /Zotlabs/Daemon/Cron.php | |
parent | fdc89d1b8972c2bad896eb3d42086b0e91e3c01b (diff) | |
download | volse-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/Cron.php')
-rw-r--r-- | Zotlabs/Daemon/Cron.php | 2 |
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'] ] ); } } } |