Quote:
Originally Posted by Megareus Rex
Could you possibly set it so users can choose whether to, by default, have it save a PM recepit or save a copy of the PM? Its annoying to have both of those things chosen automatically, and the way you did it, you can't choose to NOT have a receipt/saved message, so I'm stuck with having to manually delete them every time.
|
ok so basically just add the checkboxes back in? That's probably a good idea. Thanks! I'll update the install instructions here in a sec.
but basically
find:
Code:
<div><label for="cb_signature"><input type="checkbox" name="signature" value="1" id="cb_signature" tabindex="1" checked="checked" />Show your signature</label></div>
after that add:
Code:
<div><label for="cb_receipt"><input type="checkbox" name="receipt" value="1" id="cb_receipt" />Request a read receipt for this message</label></div>
<div><label for="cb_savecopy"><input type="checkbox" name="savecopy" value="1" id="cb_savecopy" tabindex="1" checked="checked" />Save a copy of this message in your <a href="private.php?folderid=-1">Sent Items</a> folder.</label></div>
then find and delete the hidden fields
Code:
<input type="hidden" name="receipt" value="1" />
<input type="hidden" name="savecopy" value="1" />