Changeset 1743 in subversion


Ignore:
Timestamp:
Sep 5, 2008 6:55:52 AM (5 years ago)
Author:
thomasb
Message:

Allow application/pgp parts to be displayed (#1484753)

Location:
trunk/roundcubemail
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/roundcubemail/CHANGELOG

    r1742 r1743  
    99- Allowed max. attachment size now indicated in compose screen (#1485030) 
    1010- Also capture backspace key in list mode (#1484566) 
     11- Allow application/pgp parts to be displayed (#1484753) 
    1112 
    12132008/09/04 (alec) 
  • trunk/roundcubemail/program/include/rcube_message.php

    r1736 r1743  
    231231      $this->parts[] = &$structure; 
    232232    } 
     233    // the same for pgp signed messages 
     234    else if ($message_ctype_primary == 'application' && $message_ctype_secondary == 'pgp' && !$recursive) { 
     235      $structure->type = 'content'; 
     236      $this->parts[] = &$structure; 
     237    } 
    233238    // message contains alternative parts 
    234239    else if ($message_ctype_primary == 'multipart' && ($message_ctype_secondary == 'alternative') && is_array($structure->parts)) { 
Note: See TracChangeset for help on using the changeset viewer.