Quote:
Originally Posted by tmhall
Is it possible to modify this so that "Quote message in reply" is not automatically checked when used without selecting any text?
|
I fixed this by changing:
Code:
else if (document.vbform.qr_message.value == "")
{
document.vbform.qr_quickreply.checked = 'checked';
return qr(postid);
}
To:
Code:
else if (document.vbform.qr_message.value == "")
{
document.vbform.qr_quickreply.checked = '';
return qr(postid);
}
That seems to work fine.