summaryrefslogtreecommitdiff
path: root/program
diff options
context:
space:
mode:
authoralecpl <alec@alec.pl>2011-10-25 10:57:52 +0000
committeralecpl <alec@alec.pl>2011-10-25 10:57:52 +0000
commit2db2ef3ec95f81a04acd5c143a39f0d8c06c4cae (patch)
tree910c4777beb0bb498dbea1426b2cd9a108d58e3b /program
parent1ae11998589900b4161aa4af59e50f31f64ddc66 (diff)
- Fix handling of <title> tag for cases where (malformed) HTML content contains more than one <title> tag
Diffstat (limited to 'program')
-rw-r--r--program/steps/mail/func.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/program/steps/mail/func.inc b/program/steps/mail/func.inc
index f1cc30471..f9352a3df 100644
--- a/program/steps/mail/func.inc
+++ b/program/steps/mail/func.inc
@@ -559,7 +559,7 @@ function rcmail_wash_html($html, $p = array(), $cid_replaces)
// special replacements (not properly handled by washtml class)
$html_search = array(
'/(<\/nobr>)(\s+)(<nobr>)/i', // space(s) between <NOBR>
- '/<title[^>]*>.*<\/title>/i', // PHP bug #32547 workaround: remove title tag
+ '/<title[^>]*>[^<]*<\/title>/i', // PHP bug #32547 workaround: remove title tag
'/^(\0\0\xFE\xFF|\xFF\xFE\0\0|\xFE\xFF|\xFF\xFE|\xEF\xBB\xBF)/', // byte-order mark (only outlook?)
'/<html\s[^>]+>/i', // washtml/DOMDocument cannot handle xml namespaces
);