Changeset 2902 in subversion


Ignore:
Timestamp:
Sep 1, 2009 8:48:41 AM (4 years ago)
Author:
alec
Message:
  • fix displaying attachments with backslash in filename (#1486076)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/roundcubemail/program/lib/imap.inc

    r2897 r2902  
    15021502                                        while (!preg_match('/ BODYSTRUCTURE (.*) BODY\[HEADER.FIELDS/s', $line, $m)) { 
    15031503                                                $line2 = iil_ReadLine($fp, 1024); 
    1504                                                 $line .= iil_MultLine($fp, $line2); 
     1504                                                $line .= iil_MultLine($fp, $line2, true); 
    15051505                                        } 
    15061506                                        $result[$id]->body_structure = $m[1]; 
     
    24802480                        do { 
    24812481                                $line = iil_ReadLine($fp, 5000); 
    2482                                 $line = iil_MultLine($fp, $line); 
     2482                                $line = iil_MultLine($fp, $line, true); 
    24832483                                if (!preg_match("/^$key/", $line)) 
    24842484                                        $result .= $line; 
Note: See TracChangeset for help on using the changeset viewer.