diff options
author | Mario <mario@mariovavti.com> | 2020-11-15 11:03:17 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2020-11-15 11:03:17 +0000 |
commit | e5dd108bd7a13ce9fd5e2085b5e272d3a66c5fe7 (patch) | |
tree | 71d187ff2f7d75891043a871c6030b30bf523704 /Zotlabs/Daemon/Deliver.php | |
parent | ad91ab68cefcccb90dd9222f27bacbc184cd7cdc (diff) | |
download | volse-hubzilla-e5dd108bd7a13ce9fd5e2085b5e272d3a66c5fe7.tar.gz volse-hubzilla-e5dd108bd7a13ce9fd5e2085b5e272d3a66c5fe7.tar.bz2 volse-hubzilla-e5dd108bd7a13ce9fd5e2085b5e272d3a66c5fe7.zip |
outq_hash is unique - no need for limit
Diffstat (limited to 'Zotlabs/Daemon/Deliver.php')
-rw-r--r-- | Zotlabs/Daemon/Deliver.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Daemon/Deliver.php b/Zotlabs/Daemon/Deliver.php index 7d053fb87..c853af6a8 100644 --- a/Zotlabs/Daemon/Deliver.php +++ b/Zotlabs/Daemon/Deliver.php @@ -18,7 +18,7 @@ class Deliver { if(! $argv[$x]) continue; - $r = q("select * from outq where outq_hash = '%s' limit 1", + $r = q("select * from outq where outq_hash = '%s'", dbesc($argv[$x]) ); |