Changeset 3150 in subversion


Ignore:
Timestamp:
Dec 3, 2009 4:54:38 AM (3 years ago)
Author:
alec
Message:
  • Fix displaying nested message parts (#1486246)
Location:
trunk/roundcubemail
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/roundcubemail/CHANGELOG

    r3132 r3150  
    22=========================== 
    33 
     4- Fix displaying nested message parts (#1486246) 
    45- Fix possible messages exposure when using Roundcube behind a proxy (#1486281) 
    56- Fix unicode para and line separators in javascript response (#1486310) 
  • trunk/roundcubemail/program/include/rcube_message.php

    r3057 r3150  
    351351                 ($primary_type == 'message' && ($secondary_type == 'delivery-status' || $secondary_type == 'disposition-notification'))) { 
    352352 
    353           // add text part if we're not in alternative mode or if it matches the prefs 
    354           if (!$this->parse_alternative || 
    355               ($secondary_type == 'html' && $this->opt['prefer_html']) || 
     353          // add text part if it matches the prefs 
     354          if (($secondary_type == 'html' && $this->opt['prefer_html']) || 
    356355              ($secondary_type == 'plain' && !$this->opt['prefer_html'])) { 
    357356            $mail_part->type = 'content'; 
    358357            $this->parts[] = $mail_part; 
    359358          } 
    360  
     359           
    361360          // list as attachment as well 
    362361          if (!empty($mail_part->filename)) 
  • trunk/roundcubemail/program/js/app.js

    r3091 r3150  
    38343834        } 
    38353835      else if (col == 'subject' && this.message_list) 
    3836         this.message_list.subject_col = n+1; 
     3836        this.message_list.subject_col = n; 
    38373837      } 
    38383838  }; 
  • trunk/roundcubemail/skins/default/mail.css

    r3141 r3150  
    973973} 
    974974 
    975 div.message-part 
     975div.message-part, 
     976div.message-htmlpart 
    976977{ 
    977978  padding: 10px 8px; 
Note: See TracChangeset for help on using the changeset viewer.