summaryrefslogtreecommitdiff
path: root/roundcubemail/program/include/rcube_imap.php
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2010-08-09 13:31:48 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2010-08-09 13:31:48 +0000
commit0e1e742949de36ddbf6ea81d0b5de6cf71161c2e (patch)
tree5e5b17391b8c6cde8a6c29669125ca1230efe68a /roundcubemail/program/include/rcube_imap.php
parentdac9bf709120ffa0028a638732f1159cd66ddfcd (diff)
- Removed /i from regexp
git-svn-id: https://svn.roundcube.net/trunk@3886 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/include/rcube_imap.php')
-rw-r--r--roundcubemail/program/include/rcube_imap.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/include/rcube_imap.php b/roundcubemail/program/include/rcube_imap.php
index 57667229d..3aa2132fc 100644
--- a/roundcubemail/program/include/rcube_imap.php
+++ b/roundcubemail/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];
}