Skip to content

Commit

Permalink
Add: Added an option to ignore the pagination for alert reports.
Browse files Browse the repository at this point in the history
The option Pagination was added to the "Compose Content for Scan
Report" dialog for alerts. The default of this option is ignore,
so that all results are included in the report regardless of the
number of rows specified in the filter selected in the dialog.
  • Loading branch information
jhelmold committed Aug 17, 2023
1 parent 742e399 commit 16b7c10
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/gsad_gmp.c
Original file line number Diff line number Diff line change
Expand Up @@ -4511,7 +4511,8 @@ append_alert_method_data (GString *xml, params_t *data, const char *method,
|| strcmp (name, "delta_type") == 0
|| strcmp (name, "delta_report_id") == 0
|| strcmp (name, "composer_include_notes") == 0
|| strcmp (name, "composer_include_overrides") == 0)
|| strcmp (name, "composer_include_overrides") == 0
|| strcmp (name, "composer_ignore_pagination") == 0)
xml_string_append (xml, "<data><name>%s</name>%s</data>", name,
param->value ? param->value : "");
else if (strcmp (method, "Email") == 0 && notice == 0
Expand Down

0 comments on commit 16b7c10

Please sign in to comment.