aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Search.php
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2021-09-07 09:26:06 +0000
committerMario <mario@mariovavti.com>2021-09-07 09:26:06 +0000
commit1d3a59e0cdbbea476029a6b0c3b7c0045144fa31 (patch)
tree531f11c9e4843606ffb992f790a258cb0847adb9 /Zotlabs/Module/Search.php
parentfe62b245ca9bac0aeaf58e43011eb12321d05c20 (diff)
downloadvolse-hubzilla-1d3a59e0cdbbea476029a6b0c3b7c0045144fa31.tar.gz
volse-hubzilla-1d3a59e0cdbbea476029a6b0c3b7c0045144fa31.tar.bz2
volse-hubzilla-1d3a59e0cdbbea476029a6b0c3b7c0045144fa31.zip
resolve some vsprintf issues
Diffstat (limited to 'Zotlabs/Module/Search.php')
-rw-r--r--Zotlabs/Module/Search.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Module/Search.php b/Zotlabs/Module/Search.php
index 274b02321..06a761998 100644
--- a/Zotlabs/Module/Search.php
+++ b/Zotlabs/Module/Search.php
@@ -215,7 +215,7 @@ class Search extends Controller {
}
if ($r) {
$str = ids_to_querystr($r, 'item_id');
- $r = q("select *, id as item_id from item where id in ( " . $str . ") order by created desc ");
+ $r = dbq("select *, id as item_id from item where id in ( " . $str . ") order by created desc");
}
}
else {