diff options
Diffstat (limited to 'include/poller.php')
-rw-r--r-- | include/poller.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/poller.php b/include/poller.php index a34a1e01f..a9c1a28ca 100644 --- a/include/poller.php +++ b/include/poller.php @@ -18,6 +18,13 @@ $a->set_baseurl(get_config('system','url')); + + // run queue delivery process in the background + + $php_path = ((strlen($a->config['php_path'])) ? $a->config['php_path'] : 'php'); + proc_close(proc_open("\"$php_path\" \"include/queue.php\" &", array(), $foo)); + + $force = false; if(($argc > 1) && ($argv[1] == 'force')) $force = true; |