X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=include%2Fqueue_fn.php;h=c4ab229aee3cd10444b1de60431c807721381224;hb=343f22e02fc9540f41c61c318c554505d730e699;hp=8840668112300dbb4d96d62ebd63e7047e15a815;hpb=5a6da8b447430174ae231a3b8203fd4bd8416cc1;p=friendica.git diff --git a/include/queue_fn.php b/include/queue_fn.php index 8840668112..c4ab229aee 100644 --- a/include/queue_fn.php +++ b/include/queue_fn.php @@ -1,5 +1,8 @@ $id)); } /** @@ -31,7 +32,7 @@ function was_recently_delayed($cid) { intval($cid) ); - $was_delayed = dbm::is_result($r); + $was_delayed = DBM::is_result($r); // We set "term-date" to a current date if the communication has problems. // If the communication works again we reset this value. @@ -39,7 +40,7 @@ function was_recently_delayed($cid) { $r = q("SELECT `term-date` FROM `contact` WHERE `id` = %d AND `term-date` <= '1000-01-01' LIMIT 1", intval($cid) ); - $was_delayed = !dbm::is_result($r); + $was_delayed = !DBM::is_result($r); } return $was_delayed; @@ -48,12 +49,12 @@ function was_recently_delayed($cid) { function add_to_queue($cid,$network,$msg,$batch = false) { - $max_queue = get_config('system','max_contact_queue'); + $max_queue = Config::get('system','max_contact_queue'); if ($max_queue < 1) { $max_queue = 500; } - $batch_queue = get_config('system','max_batch_queue'); + $batch_queue = Config::get('system','max_batch_queue'); if ($batch_queue < 1) { $batch_queue = 1000; } @@ -62,7 +63,7 @@ function add_to_queue($cid,$network,$msg,$batch = false) { WHERE `queue`.`cid` = %d AND `contact`.`self` = 0 ", intval($cid) ); - if (dbm::is_result($r)) { + if (DBM::is_result($r)) { if ($batch && ($r[0]['total'] > $batch_queue)) { logger('add_to_queue: too many queued items for batch server ' . $cid . ' - discarding message'); return;