aboutsummaryrefslogtreecommitdiffstats
path: root/include/queue_fn.php
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2016-02-26 09:21:01 +0100
committerMario Vavti <mario@mariovavti.com>2016-02-26 09:21:01 +0100
commit0653a2e0a9843fdcb8fd079197e5ada975b2cb05 (patch)
tree8dfc18f61fd1a40d3ed31ec76e397a530fddb714 /include/queue_fn.php
parentd19dfc87a6c00ebb0434a46664621f0b0585c97b (diff)
parentba2ede0a8f82be98994f129655dbb78d5c024e47 (diff)
downloadvolse-hubzilla-0653a2e0a9843fdcb8fd079197e5ada975b2cb05.tar.gz
volse-hubzilla-0653a2e0a9843fdcb8fd079197e5ada975b2cb05.tar.bz2
volse-hubzilla-0653a2e0a9843fdcb8fd079197e5ada975b2cb05.zip
Merge branch 'master' of https://github.com/redmatrix/hubzilla
Diffstat (limited to 'include/queue_fn.php')
-rw-r--r--include/queue_fn.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/queue_fn.php b/include/queue_fn.php
index 3112a832b..676620e2f 100644
--- a/include/queue_fn.php
+++ b/include/queue_fn.php
@@ -126,7 +126,7 @@ function queue_deliver($outq, $immediate = false) {
remove_queue_item($outq['outq_hash']);
// server is responding - see if anything else is going to this destination and is piled up
- // and try to send some more. We're relying on the fact that delivery_loop() results in an
+ // and try to send some more. We're relying on the fact that do_delivery() results in an
// immediate delivery otherwise we could get into a queue loop.
if(! $immediate) {
@@ -141,7 +141,7 @@ function queue_deliver($outq, $immediate = false) {
}
}
if($piled_up) {
- delivery_loop($piled_up);
+ do_delivery($piled_up);
}
}
}