[autocomplete] more tests

This commit is contained in:
Shish
2024-01-21 10:41:25 +00:00
parent f0457b4f94
commit 37ceebdabd
2 changed files with 30 additions and 2 deletions

View File

@ -56,7 +56,6 @@ class AutoComplete extends Extension
if ($limit !== 0) {
$limitSQL = "LIMIT :limit";
$SQLarr['limit'] = $limit;
$cache_key .= "-" . $limit;
}
return cache_get_or_set($cache_key, fn () => $database->get_pairs(
@ -70,7 +69,7 @@ class AutoComplete extends Extension
AND count > 0
ORDER BY count DESC, tag ASC
$limitSQL
",
",
$SQLarr
), 600);
}