Changeset 8abe548 in github for program/steps/mail/compose.inc


Ignore:
Timestamp:
Dec 9, 2009 4:30:37 AM (3 years ago)
Author:
alecpl <alec@…>
Branches:
master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
Children:
3f5cce66
Parents:
f96ffde
Message:
  • move compose_message_body hook to better place (#1486353)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • program/steps/mail/compose.inc

    re5d60d6 r8abe548  
    445445    else if ($compose_mode == RCUBE_COMPOSE_DRAFT || $compose_mode == RCUBE_COMPOSE_EDIT) 
    446446      $body = rcmail_create_draft_body($body, $isHtml); 
    447  
    448     $plugin = $RCMAIL->plugins->exec_hook('message_compose_body', 
    449       array('body' => $body, 'html' => $isHtml, 'mode' => $compose_mode)); 
    450  
    451     $body = $plugin['body'];   
    452   } 
     447  } 
     448 
     449  $plugin = $RCMAIL->plugins->exec_hook('message_compose_body', 
     450    array('body' => $body, 'html' => $isHtml, 'mode' => $compose_mode)); 
     451  $body = $plugin['body'];   
    453452 
    454453  $out = $form_start ? "$form_start\n" : ''; 
Note: See TracChangeset for help on using the changeset viewer.