schedule the queue re-delivery process

This commit is contained in:
Friendika 2010-11-22 15:30:52 -08:00
parent 0bcb68200e
commit fb58801aa4
3 changed files with 30 additions and 5 deletions

View file

@ -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;