MyBB Community Forums

Full Version: Don't want sent PMs to go to my sent box.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Is there a way to have this off by default?
In the private_send template, find:

<label><input type="checkbox" class="checkbox" name="options[savecopy]" value="1" tabindex="7" {$optionschecked['savecopy']} />{$lang->options_save_copy}</label><br />

replace with:

<label><input type="checkbox" class="checkbox" name="options[savecopy]" value="1" tabindex="7" />{$lang->options_save_copy}</label><br />

Basically just removing this:

{$optionschecked['savecopy']}

Smile