Skip to content

Commit

Permalink
Merge pull request #140 from greenbone/GEA-124_ignore_pagination
Browse files Browse the repository at this point in the history
Add: Added an option to ignore the pagination for alert reports.
  • Loading branch information
timopollmeier authored Aug 18, 2023
2 parents 742e399 + 16b7c10 commit 8117bd6
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 8117bd6

Please sign in to comment.