diff options
author | friendica <info@friendica.com> | 2012-12-18 16:29:57 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-12-18 16:29:57 -0800 |
commit | e9c87a69ce1a78e0790241467961bfab465b3358 (patch) | |
tree | 3961c9f2936d8bcba1b24fe4e4d443d6a8361ff8 /include/queue.php | |
parent | a12264193ffe9daa04155aff78a1feaff82b7670 (diff) | |
download | volse-hubzilla-e9c87a69ce1a78e0790241467961bfab465b3358.tar.gz volse-hubzilla-e9c87a69ce1a78e0790241467961bfab465b3358.tar.bz2 volse-hubzilla-e9c87a69ce1a78e0790241467961bfab465b3358.zip |
cleanup more obsolete stuff
Diffstat (limited to 'include/queue.php')
-rw-r--r-- | include/queue.php | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/include/queue.php b/include/queue.php index a45d3ed63..b0728503e 100644 --- a/include/queue.php +++ b/include/queue.php @@ -22,7 +22,13 @@ function queue_run($argv, $argc){ $interval = ((get_config('system','delivery_interval') === false) ? 2 : intval(get_config('system','delivery_interval'))); - $r = q("select * from deliverq where 1"); +// $r = q("select * from deliverq where 1"); +//FIXME + $r = array(); + +return; + + if(count($r)) { foreach($r as $rr) { logger('queue: deliverq'); |