summaryrefslogtreecommitdiff
path: root/roundcubemail/program/steps/mail
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-11-05 10:19:44 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-11-05 10:19:44 +0000
commit5ab6176a100216204b54072941a20bb981b01cee (patch)
tree8b61106986ecac3a84d589e1ff0f9374e3840275 /roundcubemail/program/steps/mail
parentd7ae40fd9f1c28335637c916a6b20218ebd6ccd3 (diff)
- Fix HTML editor initialization on IE (#1485304)
- move back toggle_editor function to editor.js - merge identity and compose editor init functions git-svn-id: https://svn.roundcube.net/trunk@2040 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/steps/mail')
-rw-r--r--roundcubemail/program/steps/mail/compose.inc10
1 files changed, 2 insertions, 8 deletions
diff --git a/roundcubemail/program/steps/mail/compose.inc b/roundcubemail/program/steps/mail/compose.inc
index 758069acd..fbafc0f26 100644
--- a/roundcubemail/program/steps/mail/compose.inc
+++ b/roundcubemail/program/steps/mail/compose.inc
@@ -426,13 +426,7 @@ function rcmail_compose_body($attrib)
$body = $_SESSION['compose']['param']['_body'];
}
- $lang = $tinylang = strtolower(substr($_SESSION['language'], 0, 2));
- if (!file_exists(INSTALL_PATH . 'program/js/tiny_mce/langs/'.$tinylang.'.js'))
- $tinylang = 'en';
-
- $OUTPUT->include_script('tiny_mce/tiny_mce.js');
- $OUTPUT->include_script("editor.js");
- $OUTPUT->add_script('rcmail_editor_init("$__skin_path", "'.JQ($tinylang).'", '.intval($CONFIG['enable_spellcheck']).');');
+ rcube_html_editor();
$out = $form_start ? "$form_start\n" : '';
@@ -855,7 +849,7 @@ function rcmail_editor_selector($attrib)
$selector = '';
$chosenvalue = $useHtml ? 'html' : 'plain';
$radio = new html_radiobutton(array('name' => '_editorSelect',
- 'onclick' => "return rcmail.toggle_editor(this.value=='html', '$editorid', '_is_html')"));
+ 'onclick' => "return rcmail_toggle_editor(this.value=='html', '$editorid', '_is_html')"));
foreach ($choices as $value => $text)
{