From fb3b9be9e4af349a7aa0ab9d5b5583f3bb0ad92f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Elan=20Ruusam=C3=A4e?= Date: Fri, 24 May 2013 10:09:38 +0300 Subject: [PATCH] html2text non-advanced mode ignore case make html2text non-advanced mode to ignore case of head, title, style script tags. just in case! --- class.phpmailer.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/class.phpmailer.php b/class.phpmailer.php index f77e7650..f5079f7e 100644 --- a/class.phpmailer.php +++ b/class.phpmailer.php @@ -2526,7 +2526,7 @@ class PHPMailer { $h = new html2text($html); return $h->get_text(); } - return html_entity_decode(trim(strip_tags(preg_replace('/<(head|title|style|script)[^>]*>.*?<\/\\1>/s', '', $html))), ENT_QUOTES, $this->CharSet); + return html_entity_decode(trim(strip_tags(preg_replace('/<(head|title|style|script)[^>]*>.*?<\/\\1>/si', '', $html))), ENT_QUOTES, $this->CharSet); } /**