HTML Tags in titles getting eaten <fixed/>
It seems that HTML tags in titles are swallowed instead of escaped to HTML entities.
Clarification: I do not mean allowing HTML in TITLE tags, but converting
<
and>
into their respective HTML entities<
andgt;
. At the moment, if you type inHello <World>
, the<World>
part will be completely swallowed and the result will beHello
. The end result, in my opinion, should beHello <World>
I do not think any real HTML should be allowed in titles.
Comments