alecpl
2011-02-03 62481f34e612c001bd7c91727787c60ceac579f3
- Convert Content-type to lowercase, fixes lack of attachment icon for some messages (#1487750)


1 files modified
2 ■■■ changed files
program/include/rcube_imap_generic.php 2 ●●● patch | view | raw | blame | history
program/include/rcube_imap_generic.php
@@ -1631,7 +1631,7 @@
                        break;
                        case 'content-type':
                            $ctype_parts = preg_split('/[; ]/', $string);
                            $result[$id]->ctype = array_shift($ctype_parts);
                            $result[$id]->ctype = strtolower(array_shift($ctype_parts));
                            if (preg_match('/charset\s*=\s*"?([a-z0-9\-\.\_]+)"?/i', $string, $regs)) {
                                $result[$id]->charset = $regs[1];
                            }