Changeset 3795 in subversion


Ignore:
Timestamp:
Jun 30, 2010 5:44:33 AM (3 years ago)
Author:
alec
Message:
  • Fix handling of messages with Content-Type: application/* and no filename (#1484050)
Location:
trunk/roundcubemail
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/roundcubemail/CHANGELOG

    r3789 r3795  
    22=========================== 
    33 
     4- Fix handling of messages with Content-Type: application/* and no filename (#1484050) 
    45- Improved compose screen: resizable body and attachments list, vertical splitter, options menu 
    56- Fix RC forgets search results (#1483883) 
  • trunk/roundcubemail/program/include/rcube_message.php

    r3752 r3795  
    489489            $this->attachments[] = $structure; 
    490490        } 
     491        // message is a single part non-text (without filename) 
     492        else if (preg_match('/application\//i', $mimetype)) { 
     493            $structure->filename = 'Part '.$structure->mime_id; 
     494            $this->attachments[] = $structure; 
     495        } 
    491496    } 
    492497 
Note: See TracChangeset for help on using the changeset viewer.