From d2e3d259fa11208a7460165a36957dfcdebe45dc Mon Sep 17 00:00:00 2001 From: David Mudrak Date: Wed, 3 Nov 2010 20:44:23 +0000 Subject: [PATCH] MDL-24896 Removed hmm-note - PHPMailer's LE property is part of public API --- lib/moodlelib.php | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/moodlelib.php b/lib/moodlelib.php index b018999a3b4..c4631a05584 100644 --- a/lib/moodlelib.php +++ b/lib/moodlelib.php @@ -4639,7 +4639,6 @@ function get_mailer($action='get') { $mailer->CharSet = 'UTF-8'; // some MTAs may do double conversion of LF if CRLF used, CRLF is required line ending in RFC 822bis - // hmm, this is a bit hacky because LE should be private if (isset($CFG->mailnewline) and $CFG->mailnewline == 'CRLF') { $mailer->LE = "\r\n"; } else {