diff options
author | fabrixxm <fabrix.xm@gmail.com> | 2011-01-29 09:39:38 +0100 |
---|---|---|
committer | fabrixxm <fabrix.xm@gmail.com> | 2011-01-29 09:39:38 +0100 |
commit | 5b35ceefb96f7122f210e2160c45bb4f8b9917b8 (patch) | |
tree | b687508bd7247100ac0dd51ecf36aed9ea97d5cd /mod/item.php | |
parent | 8257b1b684d2c6087a93ae690aa27c907e578aa3 (diff) | |
parent | 26cc2e02fe6e075cd35a3069edbc006219f5b435 (diff) | |
download | volse-hubzilla-5b35ceefb96f7122f210e2160c45bb4f8b9917b8.tar.gz volse-hubzilla-5b35ceefb96f7122f210e2160c45bb4f8b9917b8.tar.bz2 volse-hubzilla-5b35ceefb96f7122f210e2160c45bb4f8b9917b8.zip |
Merge branch 'friendika-master'
Diffstat (limited to 'mod/item.php')
-rw-r--r-- | mod/item.php | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/mod/item.php b/mod/item.php index feef7c95f..11e79a7ab 100644 --- a/mod/item.php +++ b/mod/item.php @@ -421,8 +421,7 @@ function item_post(&$a) { logger('mod_item: notifier invoked: ' . "\"$php_path\" \"include/notifier.php\" \"$notify_type\" \"$post_id\" &"); - proc_close(proc_open("\"$php_path\" \"include/notifier.php\" \"$notify_type\" \"$post_id\" &", - array(),$foo)); + proc_run($php_path, "include/notifier.php", $notify_type, "$post_id"); $datarray['id'] = $post_id; @@ -520,8 +519,8 @@ function item_content(&$a) { // send the notification upstream/downstream as the case may be - proc_close(proc_open("\"$php_path\" \"include/notifier.php\" \"drop\" \"$drop_id\" &", - array(), $foo)); + //proc_close(proc_open("\"$php_path\" \"include/notifier.php\" \"drop\" \"$drop_id\" &", array(), $foo)); + proc_run($php_path,"include/notifier.php","drop","$drop_id"); goaway($a->get_baseurl() . '/' . $_SESSION['return_url']); return; //NOTREACHED |