Merge pull request #908 from Squidly271/patch-33

dockerMan Security: Remove HTML tags from Config elements
This commit is contained in:
tom mortensen
2021-07-29 12:38:57 -07:00
committed by GitHub
@@ -140,7 +140,7 @@ function xmlToVar($xml) {
break;
}
}
$c[$key] = $value;
$c[$key] = strip_tags(html_entity_decode($value));
}
$out['Config'][] = $c;
}