diff options
author | Thomas Willingham <founder@kakste.com> | 2013-03-14 22:50:30 +0000 |
---|---|---|
committer | Thomas Willingham <founder@kakste.com> | 2013-03-14 22:50:30 +0000 |
commit | d07971b909363dd82faee3e4b5a218cb21d376dc (patch) | |
tree | 1d4b76c4ed24bf3c8cbb81c73069eb8ab4b2644c /include/queue.php | |
parent | fbc5260995866c280fbc48bfb7899836f46136f4 (diff) | |
parent | ffcba3db81d85ae8bdc56f1772c7675aef56c78e (diff) | |
download | volse-hubzilla-d07971b909363dd82faee3e4b5a218cb21d376dc.tar.gz volse-hubzilla-d07971b909363dd82faee3e4b5a218cb21d376dc.tar.bz2 volse-hubzilla-d07971b909363dd82faee3e4b5a218cb21d376dc.zip |
Merge remote-tracking branch 'upstream/master'
Conflicts:
view/theme/redbasic/css/style.css
Diffstat (limited to 'include/queue.php')
-rw-r--r-- | include/queue.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/queue.php b/include/queue.php index 44816673c..ec7246cb2 100644 --- a/include/queue.php +++ b/include/queue.php @@ -40,14 +40,14 @@ function queue_run($argv, $argc){ return; foreach($r as $rr) { - if(in_array($rr['outq_hub'],$deadguys)) + if(in_array($rr['outq_posturl'],$deadguys)) continue; $result = zot_zot($rr['outq_posturl'],$rr['outq_notify']); if($result['success']) { zot_process_response($rr['outq_posturl'],$result, $rr); } else { - $deadguys[] = $rr['outq_hub']; + $deadguys[] = $rr['outq_posturl']; $y = q("update outq set outq_updated = '%s' where outq_hash = '%s' limit 1", dbesc(datetime_convert()), dbesc($rr['outq_hash']) |