Changeset 3150 in subversion
- Timestamp:
- Dec 3, 2009 4:54:38 AM (3 years ago)
- Location:
- trunk/roundcubemail
- Files:
-
- 4 edited
-
CHANGELOG (modified) (1 diff)
-
program/include/rcube_message.php (modified) (1 diff)
-
program/js/app.js (modified) (1 diff)
-
skins/default/mail.css (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/roundcubemail/CHANGELOG
r3132 r3150 2 2 =========================== 3 3 4 - Fix displaying nested message parts (#1486246) 4 5 - Fix possible messages exposure when using Roundcube behind a proxy (#1486281) 5 6 - Fix unicode para and line separators in javascript response (#1486310) -
trunk/roundcubemail/program/include/rcube_message.php
r3057 r3150 351 351 ($primary_type == 'message' && ($secondary_type == 'delivery-status' || $secondary_type == 'disposition-notification'))) { 352 352 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']) || 356 355 ($secondary_type == 'plain' && !$this->opt['prefer_html'])) { 357 356 $mail_part->type = 'content'; 358 357 $this->parts[] = $mail_part; 359 358 } 360 359 361 360 // list as attachment as well 362 361 if (!empty($mail_part->filename)) -
trunk/roundcubemail/program/js/app.js
r3091 r3150 3834 3834 } 3835 3835 else if (col == 'subject' && this.message_list) 3836 this.message_list.subject_col = n +1;3836 this.message_list.subject_col = n; 3837 3837 } 3838 3838 }; -
trunk/roundcubemail/skins/default/mail.css
r3141 r3150 973 973 } 974 974 975 div.message-part 975 div.message-part, 976 div.message-htmlpart 976 977 { 977 978 padding: 10px 8px;
Note: See TracChangeset
for help on using the changeset viewer.
