diff options
author | Friendika <info@friendika.com> | 2010-11-23 19:29:38 -0800 |
---|---|---|
committer | Friendika <info@friendika.com> | 2010-11-23 19:29:38 -0800 |
commit | f9f08b435589ea10dca2db6891ae885a66e831e4 (patch) | |
tree | 6d378de75dd173bc6a6a9486347f1da1282e4d36 /include/poller.php | |
parent | 81e1e4245b54604bf6b89ceb91f2e5e1128a317a (diff) | |
download | volse-hubzilla-f9f08b435589ea10dca2db6891ae885a66e831e4.tar.gz volse-hubzilla-f9f08b435589ea10dca2db6891ae885a66e831e4.tar.bz2 volse-hubzilla-f9f08b435589ea10dca2db6891ae885a66e831e4.zip |
send unfollow before removing ostatus contact
Diffstat (limited to 'include/poller.php')
-rw-r--r-- | include/poller.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/poller.php b/include/poller.php index a9c1a28ca..cf099286c 100644 --- a/include/poller.php +++ b/include/poller.php @@ -21,7 +21,7 @@ // run queue delivery process in the background - $php_path = ((strlen($a->config['php_path'])) ? $a->config['php_path'] : 'php'); + $php_path = ((x($a->config,'php_path') && strlen($a->config['php_path'])) ? $a->config['php_path'] : 'php'); proc_close(proc_open("\"$php_path\" \"include/queue.php\" &", array(), $foo)); |