[Plugin: WP Super Edit] Bug in custom css styles (super edit 2.3.7)
-
There is a bug in the custom classes plugin of the current version of WP super edit:
Problem: classes from editor.css are not loaded.
Cause: The mce_css filter function does not combine multiple editor style files correctly.
Bugfix:
In file wp-se-cssclasses.php, line 89:
Change the line
if (empty( $mce_css ) ) $mce_css .= ',';
to
if (! empty( $mce_css ) ) $mce_css .= ',';
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘[Plugin: WP Super Edit] Bug in custom css styles (super edit 2.3.7)’ is closed to new replies.