Yeah, whether I turn off the defaults or not now the posts come out default, though before you put the 'default' check in it worked fine.
Then again, if I edit the PHP to
PHP Code:
if ($bbuserinfo[default_fcs]="1") {
$message = "[color=".$bbuserinfo[post_color]."][font=".$bbuserinfo[post_font]."][size=".$bbuserinfo[post_size]."]".$message."[/size][/font][/color]";
}
then I get the reverse situation.
I tried putting
PHP Code:
if ($bbuserinfo[default_fcs]="0") {
$message = "[color=".$bbuserinfo[post_color]."][font=".$bbuserinfo[post_font]."][size=".$bbuserinfo[post_size]."]".$message."[/size][/font][/color]";
} else {
$message = "$message";
}
in newthread/newreply.php but that didn't help.