MDL-34396 Ensure TinyMCE editor spell checking works on pages with $PAGE->https_required()

This commit is contained in:
Luke Tucker
2012-07-21 20:29:20 +02:00
committed by Petr Škoda
parent 3294034b80
commit 8bc4a6528f
+1 -1
View File
@@ -155,7 +155,7 @@ class tinymce_texteditor extends texteditor {
'min_height' => 30,
'theme_advanced_toolbar_location' => "top",
'theme_advanced_statusbar_location' => "bottom",
'spellchecker_rpc_url' => $CFG->wwwroot."/lib/editor/tinymce/tiny_mce/$this->version/plugins/spellchecker/rpc.php",
'spellchecker_rpc_url' => $CFG->httpswwwroot."/lib/editor/tinymce/tiny_mce/$this->version/plugins/spellchecker/rpc.php",
'spellchecker_languages' => $spelllanguagelist
);