alecpl
2008-12-27 3348176abaed294640761e55fedf5491bf8cddfc
#1485647: handle PRE_TEXT tags in html messages (+ small fixes)


1 files modified
14 ■■■■■ changed files
program/steps/mail/func.inc 14 ●●●●● patch | view | raw | blame | history
program/steps/mail/func.inc
@@ -642,19 +642,21 @@
    // special replacements (not properly handled by washtml class)
    $html_search = array(
      '/(<\/nobr>)(\s+)(<nobr>)/i',    // space(s) between <NOBR>
    '/(<[\/]*st1:[^>]+>)/i',    // Microsoft's Smart Tags <ST1>
    '/<title>.*<\/title>/i',    // PHP bug #32547 workaround: remove title tag
    '/<html[^>]*>/im',        // malformed html: remove html tags (#1485139)
    '/<\/html>/i',            // malformed html: remove html tags (#1485139)
    '/^[\xFE\xFF\xBB\xBF\x00]+((?:<\!doctype|\<html))/im',    // remove byte-order mark (only outlook?)
      '/(<[\/]*st1:[^>]+>)/i',        // Microsoft's Smart Tags <ST1>
      '/<\/?rte_text>/i',        // Rich Text Editor tags (#1485647)
      '/<title>.*<\/title>/i',        // PHP bug #32547 workaround: remove title tag
      '/<html[^>]*>/im',        // malformed html: remove html tags (#1485139)
      '/<\/html>/i',            // malformed html: remove html tags (#1485139)
      '/^[\xFE\xFF\xBB\xBF\x00]+((?:<\!doctype|\<html))/im',    // remove byte-order mark (only outlook?)
    );
    $html_replace = array(
      '\\1'.' &nbsp; '.'\\3',
      '',
      '',
      '',
      '\\1',
      '',
      '',
      '\\1',
    );
    $html = preg_replace($html_search, $html_replace, $html);