Fixed Admin Editor Templates

Chris D

XenForo developer
Staff member
There are duplicates of the editor templates for use in the Admin CP.

e.g. there's an admin template version of editor_js_setup

Since XenForo 1.2 Release Candidate 2, the editor CSS hasn't worked properly. It loads the editor with absolutely no styling. Just a blank contenteditable div in the middle of the screen :)

The cause is this:

Code:
<xen:require css="editor_ui.css" />

For the Admin Template version it should be as it was prior to RC2:

Code:
<xen:require css="public:editor_ui.css" />
 
Top Bottom