mirror of
https://github.com/silverstripe/silverstripe-reports
synced 2024-10-22 09:05:53 +00:00
BUGFIX Fixing TinyMCE path enumeration which throws off its 'template' plugin by invalid spaces (fixes #6407, thanks drombolaget_fredric)
This commit is contained in:
parent
7d609f24c9
commit
3495fc0b7c
@ -184,8 +184,8 @@ class LeftAndMain extends Controller {
|
||||
$theme = false;
|
||||
}
|
||||
|
||||
if($theme) $cssFiles .= ', ' . THEMES_DIR . "/{$theme}/css/editor.css";
|
||||
else if(project()) $cssFiles .= ', ' . project() . '/css/editor.css';
|
||||
if($theme) $cssFiles .= ',' . THEMES_DIR . "/{$theme}/css/editor.css";
|
||||
else if(project()) $cssFiles .= ',' . project() . '/css/editor.css';
|
||||
|
||||
$htmlEditorConfig->setOption('content_css', $cssFiles);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user