- MURDUR 587
- |
- Fabled Mythic Member
- gamertag: iBIind
- user homepage:
Posted by: dazarobbo
Posted by: MURDUR 587
It's definately a error, that's HTML code, you shouldn't be reading that. It seems the closing tag is missing so the username is ignored and just the opening tag is displayed.
I wonder if it's a error specific to you or if it's a general error.
Hold on a sec, I'm going to try getting banned see if I'm experiencing the same error.The <tag_name attributes /> syntax indicates a self-closing element, which is actually valid in XHTML (completely stupid for some elements, IMO).
The problem isn't so much that it hasn't got the closing tag, but that its textual value (textContent) hasn't been set on the server-side, so it will default and collapse to a self-closing tag. If it had a value, it would use the <tag_name attributes>textContent</tag_name> syntax.Oh yeah, you're right, I didn't see the / at the end the first time.