diff options
author | zotlabs <mike@macgirvin.com> | 2017-01-29 16:33:30 -0800 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-01-29 16:33:30 -0800 |
commit | dbf7ff979122ea0f8877e9ae4b16590f280593ef (patch) | |
tree | 0858be611775ede090d297356b24adaa756f522e | |
parent | 9addcfe827e02ca1d738c29018372db0ba8c09d6 (diff) | |
download | volse-hubzilla-dbf7ff979122ea0f8877e9ae4b16590f280593ef.tar.gz volse-hubzilla-dbf7ff979122ea0f8877e9ae4b16590f280593ef.tar.bz2 volse-hubzilla-dbf7ff979122ea0f8877e9ae4b16590f280593ef.zip |
no quotes on dbutcnow() output
-rw-r--r-- | Zotlabs/Daemon/Queue.php | 2 |
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() ); } |