OK with the checkbox mod the line look like this in the "pm_newpm"
in stead of ...
PHP Code:
[QUOTE]-------------------------------------------------------------------
search for this:
-------------------------------------------------------------------
<input type="hidden" name="receipt" value="0" />
------------------------------------------------------------------
change it to:
-------------------------------------------------------------------
<input type="hidden" name="receipt" value="0" />
<input type="hidden" name="posthash" value="$posthash" />
[/QUOTE]
look for....
PHP Code:
<input type="checkbox" name="receipt" id="cb_receipt" value="1" checked />
Request Read Receipt?
and change to...
PHP Code:
<input type="checkbox" name="receipt" id="cb_receipt" value="1" checked />
Request Read Receipt?
<input type="hidden" name="posthash" value="$posthash" />
right?