Sorry, had a look at the code:
PHP Code:
$forum['name'] = preg_replace("#&(?!\#[0-9]+;)#si", "&", $forum['name']); $forum['description'] = preg_replace("#&(?!\#[0-9]+;)#si", "&", $forum['description']); $forum['name'] = preg_replace("#&([^\#])(?![a-z1-4]{1,10};)#i", "&$1", $forum['name']);
$forum['description'] = preg_replace("#&([^\#])(?![a-z1-4]{1,10};)#i", "&$1", $forum['description']);
|
So it does replace & but not tags. Weird.
Other places:
Way to go for inconsistency...
Anyway, sorry about that. I see your point.