I think the bug is related to the small piece of code below taken from "viewtopic.php" version 2.0.15 (line 1050 and subsequent)
PHP Code:
if ( !$board_config['allow_html'] || !$userdata['user_allowhtml'])
{
if ( $user_sig != '' )
{
$user_sig = preg_replace('#(<)([\/]?.*?)(>)#is', "<\\2>", $user_sig);
}
if ( $postrow[$i]['enable_html'] )
{
$message = preg_replace('#(<)([\/]?.*?)(>)#is', "<\\2>", $message);
}
}
It should remove html code, when it is not allowed. It seems to me that for some reason the first condition -
!$board_config['allow_html'] - does not work, maybe it was accidentaly removed or misspelled. The second one -
!$userdata['user_allowhtml'] - seems to work, which explains the behaviour I described in the post above.
Could someone check it please... (presumably
Limez)
Tuitam