summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoralecpl <alec@alec.pl>2010-08-09 13:31:48 +0000
committeralecpl <alec@alec.pl>2010-08-09 13:31:48 +0000
commitecc28ce02fcfd3eaf0356c0e70dd6b929bc81771 (patch)
tree5ed624f07ea9a57b3ae2d7600e60118b80e84ac0
parent3c9d9aa94395a93585c5df779e690e5f16cf6374 (diff)
- Removed /i from regexp
-rw-r--r--program/include/rcube_imap.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/program/include/rcube_imap.php b/program/include/rcube_imap.php
index 57667229d..3aa2132fc 100644
--- a/program/include/rcube_imap.php
+++ b/program/include/rcube_imap.php
@@ -1714,7 +1714,7 @@ class rcube_imap
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];
}