From 16b7c10317d69da794f496c3792eb0fb032eb68c Mon Sep 17 00:00:00 2001 From: Johannes Helmold Date: Thu, 17 Aug 2023 17:46:06 +0200 Subject: [PATCH] Add: Added an option to ignore the pagination for alert reports. 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. --- src/gsad_gmp.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/gsad_gmp.c b/src/gsad_gmp.c index ac93fbc36..fedcff813 100644 --- a/src/gsad_gmp.c +++ b/src/gsad_gmp.c @@ -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, "%s%s", name, param->value ? param->value : ""); else if (strcmp (method, "Email") == 0 && notice == 0