| | |
| | | |
| | | $attrib['name'] = '_message'; |
| | | |
| | | if ($CONFIG['htmleditor'] || (($compose_mode == RCUBE_COMPOSE_DRAFT || $compose_mode == RCUBE_COMPOSE_EDIT) && $MESSAGE->first_html_part())) |
| | | if ($CONFIG['htmleditor'] || (($compose_mode == RCUBE_COMPOSE_DRAFT || $compose_mode == RCUBE_COMPOSE_EDIT) && $MESSAGE->has_html_part())) |
| | | $isHtml = true; |
| | | else |
| | | $isHtml = false; |
| | |
| | | global $CONFIG, $MESSAGE, $compose_mode; |
| | | |
| | | // determine whether HTML or plain text should be checked |
| | | $useHtml = $CONFIG['htmleditor'] ? true : false; |
| | | |
| | | if ($compose_mode) |
| | | $useHtml = ($useHtml && $MESSAGE->has_html_part()); |
| | | $useHtml = (($CONFIG['htmleditor'] || $compose_mode == RCUBE_COMPOSE_DRAFT || $compose_mode == RCUBE_COMPOSE_EDIT) |
| | | && $MESSAGE->has_html_part()); |
| | | else |
| | | $useHtml = $CONFIG['htmleditor'] ? true : false; |
| | | |
| | | if (empty($attrib['editorid'])) |
| | | $attrib['editorid'] = 'rcmComposeBody'; |