aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2017-01-29 16:33:30 -0800
committerzotlabs <mike@macgirvin.com>2017-01-29 16:33:30 -0800
commitdbf7ff979122ea0f8877e9ae4b16590f280593ef (patch)
tree0858be611775ede090d297356b24adaa756f522e /Zotlabs
parent9addcfe827e02ca1d738c29018372db0ba8c09d6 (diff)
downloadvolse-hubzilla-dbf7ff979122ea0f8877e9ae4b16590f280593ef.tar.gz
volse-hubzilla-dbf7ff979122ea0f8877e9ae4b16590f280593ef.tar.bz2
volse-hubzilla-dbf7ff979122ea0f8877e9ae4b16590f280593ef.zip
no quotes on dbutcnow() output
Diffstat (limited to 'Zotlabs')
-rw-r--r--Zotlabs/Daemon/Queue.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Daemon/Queue.php b/Zotlabs/Daemon/Queue.php
index 74541867c..11cbe4494 100644
--- a/Zotlabs/Daemon/Queue.php
+++ b/Zotlabs/Daemon/Queue.php
@@ -61,7 +61,7 @@ class Queue {
// the site is permanently down, there's no reason to attempt delivery at all, or at most not more than once
// or twice a day.
- $r = q("SELECT * FROM outq WHERE outq_delivered = 0 and outq_scheduled < '%s' ",
+ $r = q("SELECT * FROM outq WHERE outq_delivered = 0 and outq_scheduled < %s ",
db_utcnow()
);
}