[Legacy] Fix special character enconding on alerts

This commit is contained in:
Clemente Raposo 2023-03-09 13:14:36 +00:00
parent a075a5a10e
commit b1dcc32410

View file

@ -78,7 +78,7 @@ class AlertNameMapper implements FieldMapperInterface
$nameValue = preg_replace('/^' . $searchString . '/', '', $nameValue); $nameValue = preg_replace('/^' . $searchString . '/', '', $nameValue);
} }
$container[$name] = $nameValue; $container[$name] = html_entity_decode($nameValue);
} }
/** /**