aboutsummaryrefslogtreecommitdiffstats
path: root/boot.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 /boot.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 'boot.php')
-rw-r--r--boot.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/boot.php b/boot.php
index 530baa7b9..d9786edcd 100644
--- a/boot.php
+++ b/boot.php
@@ -2434,6 +2434,9 @@ if(! function_exists('proc_run')) {
function proc_run($cmd){
$args = func_get_args();
call_hooks("proc_run", $args);
+
+ if(count($args) && $args[0] === 'php')
+ $args[0] = ((x($a->config,'php_path')) && (strlen($a->config['php_path'])) ? $a->config['php_path'] : 'php');
foreach ($args as $arg){
$arg = escapeshellarg($arg);