From ee664a95f974b6061182b8c2fa03783f66019d69 Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Sun, 29 Jan 2006 19:20:13 +0000 Subject: [PATCH] Need to specify the delim when converting breaks in headers --- mail.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mail.php b/mail.php index 251b29a..54ad93c 100644 --- a/mail.php +++ b/mail.php @@ -290,7 +290,7 @@ class Mail $this->bodytext = trim($this->registry->unsanitize($this->bodytext, true)); // attach additional headers - $this->headers = $this->registry->modules['functions']->convert_line_breaks($this->headers); + $this->headers = $this->registry->modules['functions']->convert_line_breaks($this->headers, $delim); $this->headers .= "From: \"{$this->fromname}\" <{$this->from}>" . $delim; $this->headers .= "Return-Path: {$this->from}" . $delim; $this->headers .= "X-Mailer: ISSO Mail Framework \$Revision$" . $delim; -- 2.22.5