aboutsummaryrefslogtreecommitdiffstats
path: root/mod/message.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/message.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/message.php')
-rw-r--r--mod/message.php9
1 files changed, 1 insertions, 8 deletions
diff --git a/mod/message.php b/mod/message.php
index ef3be2c5e..466b0befa 100644
--- a/mod/message.php
+++ b/mod/message.php
@@ -96,16 +96,9 @@ function message_post(&$a) {
}
}
}
-
-
-
-
-
- $php_path = ((strlen($a->config['php_path'])) ? $a->config['php_path'] : 'php');
if($post_id) {
- //proc_close(proc_open("\"$php_path\" \"include/notifier.php\" \"mail\" \"$post_id\" &", array(),$foo));
- proc_run($php_path,"include/notifier.php","mail","$post_id");
+ proc_run('php',"include/notifier.php","mail","$post_id");
notice( t('Message sent.') . EOL );
}
else {