alecpl
2010-08-09 ecc28ce02fcfd3eaf0356c0e70dd6b929bc81771
- Removed /i from regexp


1 files modified
2 ■■■ changed files
program/include/rcube_imap.php 2 ●●● patch | view | raw | blame | history
program/include/rcube_imap.php
@@ -1714,7 +1714,7 @@
        if ($headers->ctype && !is_array($structure[0]) && $headers->ctype != 'text/plain'
            && strtolower($structure[0].'/'.$structure[1]) == 'text/plain') {
            // we can handle single-part messages, by simple fix in structure (#1486898)
            if (preg_match('/^(text|application)\/(.*)/i', $headers->ctype, $m)) {
            if (preg_match('/^(text|application)\/(.*)/', $headers->ctype, $m)) {
                $structure[0] = $m[1];
                $structure[1] = $m[2];
            }