daemon conversion continued...

This commit is contained in:
redmatrix
2016-05-19 22:26:37 -07:00
parent 014168a29b
commit a2cec8899a
49 changed files with 66 additions and 1804 deletions

View File

@@ -346,7 +346,7 @@ class Like extends \Zotlabs\Web\Controller {
// drop_item was not done interactively, so we need to invoke the notifier
// in order to push the changes to connections
proc_run('php','include/notifier.php','drop',$rr['id']);
\Zotlabs\Daemon\Master::Summon(array('Notifier','drop',$rr['id']));
}
@@ -531,7 +531,7 @@ class Like extends \Zotlabs\Web\Controller {
}
proc_run('php',"include/notifier.php","like","$post_id");
\Zotlabs\Daemon\Master::Summon(array('Notifier','like',$post_id));
if($interactive) {
notice( t('Action completed.') . EOL);