FIX: HtmlEditorConfig should be using content_css

as per https://github.com/silverstripe/silverstripe-framework/pull/4706
This commit is contained in:
Christopher Darling 2015-10-26 11:04:44 +00:00
parent 435ccb79c5
commit 70dedf26e2

View File

@ -47,7 +47,7 @@ class ReportAdmin extends LeftAndMain implements PermissionProvider {
$this->reportObject = (isset($allReports[$this->reportClass])) ? $allReports[$this->reportClass] : null;
// Set custom options for TinyMCE specific to ReportAdmin
HtmlEditorConfig::get('cms')->setOption('ContentCSS', project() . '/css/editor.css');
HtmlEditorConfig::get('cms')->setOption('content_css', project() . '/css/editor.css');
HtmlEditorConfig::get('cms')->setOption('Lang', i18n::get_tinymce_lang());
// Always block the HtmlEditorField.js otherwise it will be sent with an ajax request
@ -186,4 +186,4 @@ class ReportAdmin extends LeftAndMain implements PermissionProvider {
return $form;
}
}
}