Thanks for fixing.
2 2010-03-27 15:03
Topic: Bug in the parser (2 replies, posted in PunBB 1.3 bug reports)
I wonder why that line of code is here (include/parser.php, line 55)?
$text = str_replace('*'."\0".']', '*]', $text);
Because of it the parser unexpectedly converts this text:
*[_code]first[/_code]]second
to this:
*]second[_code]first[/_code]
test:
*]second
first