diff options
author | alecpl <alec@alec.pl> | 2011-10-23 08:26:17 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2011-10-23 08:26:17 +0000 |
commit | b9787b3560c33538db276a123dd097507a8f28f9 (patch) | |
tree | 034206d33e6b9916e4f0048fb30686da5d9fdab6 /program/include/rcube_imap.php | |
parent | 7e50b4361c7094bb33fced2ef96b95acd4d87640 (diff) |
- Add underline character to charset regexp
Diffstat (limited to 'program/include/rcube_imap.php')
-rw-r--r-- | program/include/rcube_imap.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/include/rcube_imap.php b/program/include/rcube_imap.php index b04a28615..e5d2afc11 100644 --- a/program/include/rcube_imap.php +++ b/program/include/rcube_imap.php @@ -2403,7 +2403,7 @@ class rcube_imap if (!$skip_charset_conv) { if (!$o_part->charset || strtoupper($o_part->charset) == 'US-ASCII') { // try to extract charset information from HTML meta tag (#1488125) - if ($o_part->ctype_secondary == 'html' && preg_match('/<meta[^>]+charset=([a-z0-9-]+)/i', $body, $m)) + if ($o_part->ctype_secondary == 'html' && preg_match('/<meta[^>]+charset=([a-z0-9-_]+)/i', $body, $m)) $o_part->charset = strtoupper($m[1]); else $o_part->charset = $this->default_charset; |