1
Hallo,
i was repatcing my new xoopsmailer and found the follow text on line 185 of the function send()
$this->body = str_replace("\r\n", "\n", $this->body);
$this->body = str_replace("\r", "\n", $this->body);
$this->body = str_replace("\r", $this->LE, $this->body);
but i think the last "/r" must by:
$this->body = str_replace("\n", $this->LE, $this->body);
becose of "/r" don't exist anymore after line 2 above.
thanks
Niels
[ Edited by Niels on 2002/6/17 14:46:29 ]