Quote:
Originally Posted by irishblacknight
Great addon, but is there any way to change the default actions? ie. not email the user and not email the admin?
Emailing the banned user can result in stupid emails from them complaining and I'd rather just nuke them once and for all
|
Easiest way is to edit the decimator_main template...ok, here's the changes...
Find:
PHP Code:
<input type="checkbox" value="1" name="DOESPAMMER" checked>Email Spammer<br>
<textarea cols="30" rows="8" name="emailtext">
$vboptions[settingdefaultemail]
</textarea><br>
<input type="checkbox" value="1" name="DOWEMAS" checked>Email Webmaster<br>
Replace With:
PHP Code:
<input type="checkbox" value="0" name="DOESPAMMER" disabled="disabled">Email Spammer<br>
<textarea cols="30" rows="8" name="emailtext" disabled="disabled">
$vboptions[settingdefaultemail]
</textarea><br>
<input type="checkbox" value="0" name="DOWEMAS" disabled="disabled">Email Webmaster<br>