From 5ab6176a100216204b54072941a20bb981b01cee Mon Sep 17 00:00:00 2001 From: alec Date: Wed, 5 Nov 2008 10:19:44 +0000 Subject: - 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 --- roundcubemail/program/include/main.inc | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'roundcubemail/program/include') diff --git a/roundcubemail/program/include/main.inc b/roundcubemail/program/include/main.inc index 21856bc80..bd5156509 100644 --- a/roundcubemail/program/include/main.inc +++ b/roundcubemail/program/include/main.inc @@ -1173,4 +1173,22 @@ function rcmail_localize_foldername($name) } +/** + * Output HTML editor scripts + * + * @param boolean Editor mode (use true for minimal editor) + */ +function rcube_html_editor($mode='') +{ + global $OUTPUT, $CONFIG; + + $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']).', "'.$mode.'");'); +} + ?> -- cgit v1.2.3