Quote And Codebox fix
1.2
This fixes the bug where quote boxes where messed up when there is a smiley at the end of a quote. Also the code box should work properly now.
v1.1: also the [glow] tag is fixed now (thx to Godai for the tip)
v1.2: fix for smileys containing < > (thx to cae)
[CV]XXL
http://boardmod.xnull.com
Sources\Subs.pl
sub DoUBBC {
# fix for quote and code boxes. Yes I know the code is stupid but it works without any side effects ;)
$message =~ s~\[code\]~ \[code\]~ig;
$message =~ s~\[/code\]~ \[/code\]~ig;
$message =~ s~\[quote\]~ \[quote\]~ig;
$message =~ s~\[/quote\]~ \[/quote\]~ig;
$message =~ s~\[glow\]~ \[glow\]~ig;
$message =~ s~\[/glow\]~ \[/glow\]~ig;
$message =~ s~\[\&table(.*?)\]~~g;
$message =~ s~\[/\&table\]~
~g;
$message =~ s~\n~
~g;
$message =~ s~\~\n\~ig;