Make it not checked by default:
Look at the instructions:
<br /><!--Quote original message hack by JoshPet --><br /><input type="checkbox" name="QuoteOrig" value="1" checked="checked" class="formboxes" /><br />I want to Quote the Original Message in my Reply<br /><br /><br /><br /><br />
change to:
<br /><!--Quote original message hack by JoshPet --><br /><input type="checkbox" name="QuoteOrig" value="1" class="formboxes" /><br />I want to Quote the Original Message in my Reply<br /><br /><br /><br /><br />
Original Message on top:
Change:
if ($QuoteOrig) {<br /> $Message .= "\n\n<blockquote><font class=\"small\">{$ubbt_lang['IN_REPLY']}:</font><hr /><br />";<br /> $Message .= $OrigMessage;<br /> $Message .= "<br /><br /><hr /></blockquote>";<br /> } to
if ($QuoteOrig) {<br /> $Message = "\n\n<blockquote><font class=\"small\">{$ubbt_lang['IN_REPLY']}:</font><hr /><br /> . $OrigMessage . "<br /><br /><hr /></blockquote>" . $Message";<br /> <br /> }