HTML ` ` not being correctly filtered out
This MR addresses an issue where HTML non-breaking space entities (
) were not being correctly filtered out in the serialised HTML snippet returned by the Html::serialize
method.
To resolve this, an additional line has been added before the return $html; statement in the Html::serialize
method to decode HTML entities, ensuring that and other entities are properly converted to their corresponding characters.