]> git.mxchange.org Git - friendica.git/blobdiff - mod/search.php
New function to fetch item data especially for users
[friendica.git] / mod / search.php
index 3c421984a2994ccd60c20c17467a105bcdafb40c..6580246e4a4122faba4f94aeb0a216dddffca44b 100644 (file)
@@ -211,7 +211,7 @@ function search_content(App $a) {
                }
                dba::close($terms);
 
-               $items = Item::select(local_user(), Item::DISPLAY_FIELDLIST, ['id' => array_reverse($itemids)]);
+               $items = Item::selectForUser(local_user(), [], ['id' => array_reverse($itemids)]);
                $r = dba::inArray($items);
        } else {
                logger("Start fulltext search for '".$search."'", LOGGER_DEBUG);
@@ -221,7 +221,7 @@ function search_content(App $a) {
                        local_user(), $search];
                $params = ['order' => ['id' => true],
                        'limit' => [$a->pager['start'], $a->pager['itemspage']]];
-               $items = Item::select(local_user(), Item::DISPLAY_FIELDLIST, $condition, $params);
+               $items = Item::selectForUser(local_user(), [], $condition, $params);
                $r = dba::inArray($items);
        }