Avoid HTML in ParseUrl desriptions

This commit is contained in:
Michael 2021-03-28 11:32:26 +00:00
parent f1b60414b3
commit 70d5802793
1 changed files with 1 additions and 1 deletions

View File

@ -714,7 +714,7 @@ class ParseUrl
array_walk_recursive($siteinfo, function (&$element) {
if (is_string($element)) {
$element = html_entity_decode($element, ENT_COMPAT, 'UTF-8');
$element = trim(strip_tags(html_entity_decode($element, ENT_COMPAT, 'UTF-8')));
}
});