Index: branches/5.3.x/core/units/helpers/fck_helper.php =================================================================== diff -u -N -r16382 -r16503 --- branches/5.3.x/core/units/helpers/fck_helper.php (.../fck_helper.php) (revision 16382) +++ branches/5.3.x/core/units/helpers/fck_helper.php (.../fck_helper.php) (revision 16503) @@ -1,6 +1,6 @@ 'function(ev) { $("body").trigger("InlineEditor.Blur", [ev]); }', ); - return $editor->inline($editor_name, Array (), $events); + return $editor->inline($editor_name, array('removePlugins' => 'codemirror'), $events); } /** @@ -541,6 +541,12 @@ $prefix = $this->Application->isAdmin ? '_FRONT_END_' : ''; $styles_css = $this->Application->HREF('index', $prefix, $url_params, 'index.php'); + + /** @var kCurlHelper $curl_helper */ + $curl_helper = $this->Application->recallObject('CurlHelper'); + $curl_helper->Send($styles_css, false); + $styles_css = $curl_helper->getInfo(CURLINFO_REDIRECT_URL); + $curl_helper->CloseConnection(); } else { $stylesheet_folder_url = $this->Application->BaseURL() . trim(EDITOR_PATH, '/') . '/';