Skip to content
Snippets Groups Projects
Commit 6bd51025 authored by Demian Katz's avatar Demian Katz
Browse files

Avoid duplicate DB lookups.

parent e51f5ae4
No related merge requests found
......@@ -517,12 +517,20 @@ class AjaxController extends AbstractBase
400
);
}
$result = [];
$result = $checked = [];
foreach ($ids as $i => $id) {
$source = isset($sources[$i]) ? $sources[$i] : DEFAULT_SEARCH_BACKEND;
$selector = $source . '|' . $id;
// We don't want to bother checking the same ID more than once, so
// use the $checked flag array to avoid duplicates:
if (isset($checked[$selector])) {
continue;
}
$checked[$selector] = true;
$data = $user->getSavedData($id, null, $source);
if ($data && count($data) > 0) {
$selector = $source . '|' . $id;
$result[$selector] = [];
// if this item was saved, add it to the list of saved items.
foreach ($data as $list) {
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment