diff options
author | DM42.Net (Matt Dent) <dentm42@dm42.net> | 2019-01-13 14:10:35 -0500 |
---|---|---|
committer | DM42.Net (Matt Dent) <dentm42@dm42.net> | 2019-01-13 14:10:35 -0500 |
commit | ab074f52fece902d1057f531c5289562a7d5343f (patch) | |
tree | 43338c89547ecfd3fa2d025f07a324dc605263c7 /include/zot.php | |
parent | 121fa834d56ab3496c82d4d6c5fd8ba70743c26a (diff) | |
download | volse-hubzilla-ab074f52fece902d1057f531c5289562a7d5343f.tar.gz volse-hubzilla-ab074f52fece902d1057f531c5289562a7d5343f.tar.bz2 volse-hubzilla-ab074f52fece902d1057f531c5289562a7d5343f.zip |
outq_created not outq_scheduled
Diffstat (limited to 'include/zot.php')
-rw-r--r-- | include/zot.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/zot.php b/include/zot.php index f2aa58ee7..7467eccde 100644 --- a/include/zot.php +++ b/include/zot.php @@ -4959,7 +4959,7 @@ function zot_reply_pickup($data) { // It's possible that we have more than 100 messages waiting to be sent. // See if there are any more messages in the queue. - $x = q("select * from outq order by outq_scheduled where outq_posturl = '%s' limit 1", + $x = q("select * from outq order by outq_created where outq_posturl = '%s' limit 1", dbesc($data['callback']) ); |