Quote:
03-21-03 at 07:56 PM Areku said this in Post #152
Is there any update solving the multiple Re: Re: Re: Re: Re: additions?
|
Fixed.
Version 2.4 - Fixed the repeated "Re:" bug.
Now, if there is one "Re:" in the message title, no other "Re:" will be added to avoid the multiple "Re:" problem.
To update manually from 2.3 to 2.4, do this:
1. In private.php, find:
PHP Code:
$pmquote = $message[message];
Change this to:
PHP Code:
$pmquote = $message[message];
if (strtolower(substr($message[title],0,3))=="re:") {
$re = "";
} else {
$re = "Re:";
}
2. In privmsg template, find:
Code:
"RE: $message[title]"
Change this to:
Code:
"$re$message[title]"
Done!