diff options
author | friendica <info@friendica.com> | 2012-05-07 18:36:28 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-05-07 18:36:28 -0700 |
commit | f0b7a8ae35c67f2440c3c3574451f52e5126fa68 (patch) | |
tree | cb9d591e4d4659ed4bce74510fe12d5d4f4e6c20 /include | |
parent | 8a4e3cc3701c3278e35d917de526fd8b032709ab (diff) | |
download | volse-hubzilla-f0b7a8ae35c67f2440c3c3574451f52e5126fa68.tar.gz volse-hubzilla-f0b7a8ae35c67f2440c3c3574451f52e5126fa68.tar.bz2 volse-hubzilla-f0b7a8ae35c67f2440c3c3574451f52e5126fa68.zip |
finished dry run - now for real test
Diffstat (limited to 'include')
-rw-r--r-- | include/queue_fn.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/queue_fn.php b/include/queue_fn.php index 613571c84..2aca338f5 100644 --- a/include/queue_fn.php +++ b/include/queue_fn.php @@ -21,7 +21,9 @@ function was_recently_delayed($cid) { and last > UTC_TIMESTAMP() - interval 15 minute limit 1", intval($cid) ); - + if(count($r)) + return true; + return false; } |