Topic: Bug in the parser
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