I'm working on the feature to
remove all formatting/forumcode parsing from the code box.
I'm coming a long way, but I'm running into this issue ;
Before inserting the string into the db, the function checkurls replaces all instances
&# with
#.
Wouldn't it be just as 'safe' to replace it with it's ascii entity equivalent ?
So, instead of replacing
&# with
#, you'd replace
&# with
&#
Any feedback on this would be appreciated.<