pull/5261/head
Michael 2018-06-21 08:23:35 +00:00
rodzic 81ac7c33da
commit 5743bb0dae
1 zmienionych plików z 9 dodań i 6 usunięć

Wyświetl plik

@ -211,9 +211,13 @@ function search_content(App $a) {
}
dba::close($terms);
if (!empty($itemids)) {
$params = ['order' => ['id' => true]];
$items = Item::selectForUser(local_user(), [], ['id' => $itemids], $params);
$r = dba::inArray($items);
} else {
$r = [];
}
} else {
logger("Start fulltext search for '".$search."'", LOGGER_DEBUG);
@ -251,4 +255,3 @@ function search_content(App $a) {
return $o;
}