diff --git a/CHANGELOG.md b/CHANGELOG.md index a030756f9..857f7d304 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). - Fix severity_in_level SQL function [#1312](https://github.com/greenbone/gvmd/pull/1312) ### Removed +- Remove solution element from VT tags [#886](https://github.com/greenbone/gvmd/pull/886) - Drop GMP scanners [#1269](https://github.com/greenbone/gvmd/pull/1269) - Reduce Severity Classes [#1285](https://github.com/greenbone/gvmd/pull/1285) - Removed Severity Classes [#1288](https://github.com/greenbone/gvmd/pull/1288) diff --git a/src/manage.c b/src/manage.c index d9007012e..73ce74ac5 100644 --- a/src/manage.c +++ b/src/manage.c @@ -5346,25 +5346,6 @@ get_nvt_xml (iterator_t *nvts, int details, int pref_count, xml_string_append (nvt_tags, "impact=%s", nvt_iterator_impact (nvts)); } - if (nvt_iterator_solution (nvts) && nvt_iterator_solution (nvts)[0]) - { - if (nvt_tags->str) - xml_string_append (nvt_tags, "|solution=%s", - nvt_iterator_solution (nvts)); - else - xml_string_append (nvt_tags, "solution=%s", - nvt_iterator_solution (nvts)); - } - if (nvt_iterator_solution_type (nvts) - && nvt_iterator_solution_type (nvts)[0]) - { - if (nvt_tags->str) - xml_string_append (nvt_tags, "|solution_type=%s", - nvt_iterator_solution_type (nvts)); - else - xml_string_append (nvt_tags, "solution_type=%s", - nvt_iterator_solution_type (nvts)); - } if (nvt_iterator_detection (nvts) && nvt_iterator_detection (nvts)[0]) { if (nvt_tags->str)