diff options
Diffstat (limited to 'program/lib/Net')
-rw-r--r-- | program/lib/Net/SMTP.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/lib/Net/SMTP.php b/program/lib/Net/SMTP.php index f5a625454..0602e100f 100644 --- a/program/lib/Net/SMTP.php +++ b/program/lib/Net/SMTP.php @@ -952,7 +952,7 @@ class Net_SMTP /* If we have a separate headers string, send it first. */ if (!is_null($headers)) { - $this->quotedata($line); + $this->quotedata($headers); if (PEAR::isError($result = $this->_send($headers . "\r\n\r\n"))) { return $result; } |