Changeset b26e1d2 in github
- Timestamp:
- Jul 20, 2009 12:54:42 PM (4 years ago)
- Branches:
- master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
- Children:
- a07ab6d
- Parents:
- 4307ccd8
- File:
-
- 1 edited
-
program/include/rcube_message.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
program/include/rcube_message.php
rb0d56e9 rb26e1d2 383 383 continue; 384 384 385 // part belongs to a related message 386 if ($message_ctype_secondary == 'related') { 385 // part belongs to a related message and is linked 386 if ($message_ctype_secondary == 'related' 387 && ($mail_part->headers['content-id'] || $mail_part->headers['content-location'])) { 387 388 if ($mail_part->headers['content-id']) 388 389 $mail_part->content_id = preg_replace(array('/^</', '/>$/'), '', $mail_part->headers['content-id']); 389 390 if ($mail_part->headers['content-location']) 390 391 $mail_part->content_location = $mail_part->headers['content-base'] . $mail_part->headers['content-location']; 391 392 if ($mail_part->content_id || $mail_part->content_location) { 393 $this->inline_parts[] = $mail_part; 394 } 392 393 $this->inline_parts[] = $mail_part; 395 394 } 396 395 // is a regular attachment
Note: See TracChangeset
for help on using the changeset viewer.
