X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=include%2Fqueue.php;h=5e73922f9a948daf9b939397061e8856a17f7333;hb=7d0a7f6be9e6c281ddafdfed799bf8b46785424a;hp=cf5ed9a8156c28cd3e9a33fa8e449789f30c343a;hpb=6161ceff649fd52cb6cdfe14ebe5fdd35f6854a9;p=friendica.git diff --git a/include/queue.php b/include/queue.php index cf5ed9a815..5e73922f9a 100644 --- a/include/queue.php +++ b/include/queue.php @@ -44,7 +44,7 @@ function queue_run(&$argv, &$argc){ // For the first 12 hours we'll try to deliver every 15 minutes // After that, we'll only attempt delivery once per hour. - $r = q("SELECT `id` FROM `queue` WHERE ((`created` > UTC_TIMESTAMP() - INTERVAL 12 HOUR && `last` < UTC_TIMESTAMP() - INTERVAL 15 MINUTE) OR (`last` < UTC_TIMESTAMP() - INTERVAL 1 HOUR)) ORDER BY `cid`, `created`"); + $r = q("SELECT `id` FROM `queue` WHERE ((`created` > UTC_TIMESTAMP() - INTERVAL 12 HOUR AND `last` < UTC_TIMESTAMP() - INTERVAL 15 MINUTE) OR (`last` < UTC_TIMESTAMP() - INTERVAL 1 HOUR)) ORDER BY `cid`, `created`"); call_hooks('queue_predeliver', $a, $r); @@ -83,7 +83,7 @@ function queue_run(&$argv, &$argc){ $dead = Cache::get($cachekey_deadguy.$c[0]['notify']); - if (!is_null($dead) AND $dead) { + if (!is_null($dead) && $dead) { logger('queue: skipping known dead url: '.$c[0]['notify']); update_queue_time($q_item['id']); return; @@ -101,7 +101,7 @@ function queue_run(&$argv, &$argc){ Cache::set($cachekey_server.$server, $vital, CACHE_QUARTER_HOUR); } - if (!is_null($vital) AND !$vital) { + if (!is_null($vital) && !$vital) { logger('queue: skipping dead server: '.$server); update_queue_time($q_item['id']); return;