Changeset 3165 in subversion
- Timestamp:
- Dec 5, 2009 2:10:41 PM (3 years ago)
- Location:
- trunk/roundcubemail
- Files:
-
- 2 edited
-
CHANGELOG (modified) (1 diff)
-
program/steps/mail/compose.inc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/roundcubemail/CHANGELOG
r3163 r3165 2 2 =========================== 3 3 4 - Plugin API: added 'message_compose_body' hook (#1486285) 4 5 - Fix counters of all folders are checked in 'getunread' action with check_all_folders disabled (#1486128) 5 6 - Fix displaying alternative parts in messages of type message/rfc822 (#1486246) -
trunk/roundcubemail/program/steps/mail/compose.inc
r3089 r3165 445 445 else if ($compose_mode == RCUBE_COMPOSE_DRAFT || $compose_mode == RCUBE_COMPOSE_EDIT) 446 446 $body = rcmail_create_draft_body($body, $isHtml); 447 } 448 else if (!empty($_SESSION['compose']['param']['body'])) 449 { 450 $body = $_SESSION['compose']['param']['body']; 447 448 $plugin = $RCMAIL->plugins->exec_hook('message_compose_body', 449 array('body' => $body, 'html' => $isHtml, 'mode' => $compose_mode)); 450 451 $body = $plugin['body']; 451 452 } 452 453
Note: See TracChangeset
for help on using the changeset viewer.
