There is a very small bug in the quick reply I just noticed (Nakkid quick reply). If you take a look at my screenshot attached in post #22 you can see that the mood message field says "mood message..", well..if your user doesn't want a mood message and at defaults just selects a mood and hits submit, then their mouseover text will say "mood message..".
So to fix this, in newreply.php find:
PHP Code:
$usermoodmessage = censortext($usermoodmessage);
And below it place:
PHP Code:
if($usermoodmessage == "mood message..")
{
$usermoodmessage = '';
}
Replace the "mood message.." part with whatever text you have. If you have no text in it, then don't even use this fix. :P