remove server-side querying of links, as we do that now client-side and server-side can stall whole list

This commit is contained in:
ralf 2024-08-14 08:05:45 +02:00
parent 1e06b9cfc5
commit efad863d18

View File

@ -476,7 +476,6 @@ class infolog_ui
// query all links and sub counts in one go
if($infos && (!$query['csv_export'] || !is_array($query['csv_export'])))
{
$links = Link::get_links_multiple('infolog', array_keys($infos), true, '', 'link_lastmod DESC', true); // true=incl. deleted
$anzSubs = $this->bo->anzSubs(array_keys($infos));
}
$rows = array();
@ -505,7 +504,6 @@ class infolog_ui
{
if(!$query['csv_export'] || !is_array($query['csv_export']))
{
$info['links'] =& $links[$id];
$info['info_anz_subs'] = (int)$anzSubs[$id];
$info = $this->get_info($info, $readonlys, null, null, false, $details);
}