diff options
author | redmatrix <git@macgirvin.com> | 2016-05-19 20:36:32 -0700 |
---|---|---|
committer | redmatrix <git@macgirvin.com> | 2016-05-19 20:36:32 -0700 |
commit | 9cb1ac3de5d0f540bc6e1f5b1f4277b5a5bb9e67 (patch) | |
tree | 0733251872dc2f850ea0a6afc6454848a211b21f /Zotlabs/Daemon/Notifier.php | |
parent | 5b2474238eb0d257db14b0668ef25eab92e53fea (diff) | |
download | volse-hubzilla-9cb1ac3de5d0f540bc6e1f5b1f4277b5a5bb9e67.tar.gz volse-hubzilla-9cb1ac3de5d0f540bc6e1f5b1f4277b5a5bb9e67.tar.bz2 volse-hubzilla-9cb1ac3de5d0f540bc6e1f5b1f4277b5a5bb9e67.zip |
daemon master: create some compatibility code
Diffstat (limited to 'Zotlabs/Daemon/Notifier.php')
-rw-r--r-- | Zotlabs/Daemon/Notifier.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Zotlabs/Daemon/Notifier.php b/Zotlabs/Daemon/Notifier.php index 919f98823..d37182a4d 100644 --- a/Zotlabs/Daemon/Notifier.php +++ b/Zotlabs/Daemon/Notifier.php @@ -381,7 +381,7 @@ class Notifier { // don't uplink a relayed post to the relay owner if($parent_item['source_xchan'] !== $parent_item['owner_xchan']) { logger('notifier: uplinking this item'); - proc_run('php','include/notifier.php','uplink',$item_id); + Master::Summon(array('Notifier','uplink',$item_id)); } } @@ -641,7 +641,8 @@ class Notifier { if($normal_mode) { $x = q("select * from hook where hook = 'notifier_normal'"); if($x) - proc_run('php','include/deliver_hooks.php', $target_item['id']); + Master::Summon(array('Deliver_hooks',$target_item['id'])); + } if($deliveries) |