outq_created not outq_scheduled

This commit is contained in:
DM42.Net (Matt Dent) 2019-01-13 14:10:35 -05:00
parent 121fa834d5
commit ab074f52fe

View File

@ -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'])
);