Skip to content

Commit cf6433c

Browse files
jhelmoldtimopollmeier
authored andcommitted
Fix: Made the filter on the vulnerabilities page work for report_ids.
The filter on the vulnerabilities page did not work for report_ids.
1 parent 014cf7f commit cf6433c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/manage_sql.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -56305,7 +56305,7 @@ vuln_iterator_extra_with (const gchar *task_id, const gchar *report_id,
5630556305
if (report_id && strcmp (report_id, ""))
5630656306
{
5630756307
report_t report = 0;
56308-
find_report_with_permission (task_id, &report, "get_reports");
56308+
find_report_with_permission (report_id, &report, "get_reports");
5630956309
g_string_append_printf (ret, " AND results.report = %llu", report);
5631056310
}
5631156311

0 commit comments

Comments
 (0)