Changeset 3e58bf2 in github


Ignore:
Timestamp:
Jun 30, 2010 5:44:33 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:
4eb8493
Parents:
761894e
Message:
  • Fix handling of messages with Content-Type: application/* and no filename (#1484050)
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • CHANGELOG

    r087c7dc r3e58bf2  
    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) 
  • program/include/rcube_message.php

    rf19d86b r3e58bf2  
    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.