Changes to support bug #33

Remove query limit when retrieving CPEs
This commit is contained in:
2018-11-16 11:54:19 -05:00
parent ca89e02c4e
commit f530c5a2a1
5 changed files with 426 additions and 318 deletions

View File

@ -542,8 +542,7 @@ function sw_filter($is_os = false)
'table_joins' => [
"LEFT JOIN `sagacity`.`target_software` ts ON ts.`sft_id` = s.`id`" . ($tgt_id ? " AND ts.`tgt_id` = $tgt_id" : "")
],
'order' => 's.cpe',
'limit' => 25
'order' => 's.cpe'
]);
$sw = $db->help->execute();