aboutsummaryrefslogtreecommitdiffstats
path: root/mod/item.php
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-02-23 15:16:12 -0800
committerFriendika <info@friendika.com>2011-02-23 15:16:12 -0800
commit755c2245e8184ceee2ba3382e4f60143da31e6df (patch)
tree0098c6c22248135533a8fec4768090e9463b7b68 /mod/item.php
parentfdc469ae4ce385e21c396b76628e0d427e173e92 (diff)
downloadvolse-hubzilla-755c2245e8184ceee2ba3382e4f60143da31e6df.tar.gz
volse-hubzilla-755c2245e8184ceee2ba3382e4f60143da31e6df.tar.bz2
volse-hubzilla-755c2245e8184ceee2ba3382e4f60143da31e6df.zip
move php path setting inside proc_run
Diffstat (limited to 'mod/item.php')
-rw-r--r--mod/item.php10
1 files changed, 2 insertions, 8 deletions
diff --git a/mod/item.php b/mod/item.php
index 8c6b181c0..c2487435e 100644
--- a/mod/item.php
+++ b/mod/item.php
@@ -460,11 +460,7 @@ function item_post(&$a) {
// NOTREACHED
}
- $php_path = ((strlen($a->config['php_path'])) ? $a->config['php_path'] : 'php');
-
- logger('mod_item: notifier invoked: ' . "\"$php_path\" \"include/notifier.php\" \"$notify_type\" \"$post_id\" &");
-
- proc_run($php_path, "include/notifier.php", $notify_type, "$post_id");
+ proc_run('php', "include/notifier.php", $notify_type, "$post_id");
$datarray['id'] = $post_id;
@@ -595,12 +591,10 @@ function item_content(&$a) {
}
}
$drop_id = intval($item['id']);
- $php_path = ((strlen($a->config['php_path'])) ? $a->config['php_path'] : 'php');
// 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_run($php_path,"include/notifier.php","drop","$drop_id");
+ proc_run('php',"include/notifier.php","drop","$drop_id");
goaway($a->get_baseurl() . '/' . $_SESSION['return_url']);
//NOTREACHED