You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When passing a string with HTML Entities, the convert method will decode these and return them as-is.
This can lead to some unintentional behaviour if you have used htmlentities to encode text with legitimate html code converted to "string" / HTML Entities.
When passing a string with HTML Entities, the
convert
method will decode these and return them as-is.This can lead to some unintentional behaviour if you have used
htmlentities
to encode text with legitimate html code converted to "string" / HTML Entities.See this test:
Output:
I believe this is unintentional behaviour, because we end up with raw HTML code - the exact opposite of the intention when calling
convert
.The text was updated successfully, but these errors were encountered: