Changeset ecc28ce in github


Ignore:
Timestamp:
Aug 9, 2010 9:31:48 AM (3 years ago)
Author:
alecpl <alec@…>
Branches:
master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
Children:
27a96a4
Parents:
3c9d9aa
Message:
  • Removed /i from regexp
File:
1 edited

Legend:

Unmodified
Added
Removed
  • program/include/rcube_imap.php

    r3c9d9aa recc28ce  
    17151715            && strtolower($structure[0].'/'.$structure[1]) == 'text/plain') { 
    17161716            // we can handle single-part messages, by simple fix in structure (#1486898) 
    1717             if (preg_match('/^(text|application)\/(.*)/i', $headers->ctype, $m)) { 
     1717            if (preg_match('/^(text|application)\/(.*)/', $headers->ctype, $m)) { 
    17181718                $structure[0] = $m[1]; 
    17191719                $structure[1] = $m[2]; 
Note: See TracChangeset for help on using the changeset viewer.