diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2014-09-26 19:16:37 +0200 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2014-09-26 19:16:37 +0200 |
commit | 6c96b1b7cd0313ce0d3afaac03db65662e31be39 (patch) | |
tree | cc0e57e57247407fac8162d52d5d5d215fdd5988 /program/include/rcmail.php | |
parent | 1f4b06a853dfab075017534919abdfc918274a91 (diff) |
Initialize TinyMCE editor in rcmail.init() instead of a separate call after. This makes the edior ready when restoring a HTML message from localStorage (#1490016)
Diffstat (limited to 'program/include/rcmail.php')
-rw-r--r-- | program/include/rcmail.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/program/include/rcmail.php b/program/include/rcmail.php index 1da2f8f91..2f595deef 100644 --- a/program/include/rcmail.php +++ b/program/include/rcmail.php @@ -1805,17 +1805,17 @@ class rcmail extends rcube $lang = 'en'; } - $script = json_encode(array( + $script = array( 'mode' => $mode, 'lang' => $lang, 'skin_path' => $this->output->get_skin_path(), 'spellcheck' => intval($this->config->get('enable_spellcheck')), 'spelldict' => intval($this->config->get('spellcheck_dictionary')) - )); + ); $this->output->include_script('tiny_mce/tiny_mce.js'); $this->output->include_script('editor.js'); - $this->output->add_script("rcmail_editor_init($script)", 'docready'); + $this->output->set_env('html_editor_init', $script); } /** |