X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=include%2Fqueue.php;h=865d6903a2ad266a3002712f0556beb3408239a5;hb=3b4f72da939fa9f5155311799044414220d5d039;hp=f721326f06e4049bf97de210377168e7183c4402;hpb=578cb0a55c643702504b1c4c18a0d1a02af5cf80;p=friendica.git diff --git a/include/queue.php b/include/queue.php index f721326f06..865d6903a2 100644 --- a/include/queue.php +++ b/include/queue.php @@ -52,7 +52,7 @@ function queue_run(&$argv, &$argc) { if (dbm::is_result($r)) { foreach ($r as $q_item) { logger('Call queue for id '.$q_item['id']); - proc_run(array('priority' => PRIORITY_LOW, 'dont_fork' => true), "include/queue.php", $q_item['id']); + proc_run(array('priority' => PRIORITY_LOW, 'dont_fork' => true), "include/queue.php", (int)$q_item['id']); } } return;