Uridium Posted September 21, 2021 Posted September 21, 2021 (edited) these are just small adjustments which puts a EXIT link on each of the error notifications and a Cancel button on the Compose mail incase you dont want to send one mail.inc.php Ive updated the TPL file which should fix the SUBJECT repeating issue mail.tpl.php Edited September 21, 2021 by Uridium Edited tpl file 2 Quote
Canjucks Posted September 21, 2021 Posted September 21, 2021 do you have a solution for the RE: repeating on replying to messages? idk how to do deal with so its serious request if this can be done. Quote
URBANZ Posted September 21, 2021 Posted September 21, 2021 (edited) NOTE NONE OF THIS CODE HAS BEEN TESTED BUT SHOULD WORK find the following in mail.tpl.php public $mailForm = ' then find inside $mailForm <input name="subject" class="form-control" placeholder="Subject" value="{#if subject}RE: {subject}{/if}" / > replace with <input name="subject" class="form-control" placeholder="Subject" value="{#if subject}{subject}{/if}" / > then find the following method in mail.inc.php public function method_reply() { find this line inside the above method if (!$error) { add this below $this->methodData->subject = (strpos($this->methodData->subject, 'RE:') !== false ? $this->methodData->subject : 'RE: '. $this->methodData->subject); @Canjucks @Uridium Edited September 21, 2021 by URBANZ 1 Quote
Canjucks Posted September 22, 2021 Posted September 22, 2021 @URBANZ you knew it was going to work and of course it does! These updates are awesome and just gives the game a cleaner look and feel which is important for me for when the doors are finally opened. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.