The suggestion from the CkEditor forum looks like that might fix it. Hopefully they'll fix it in the next version def. a bug.
I think the code you pasted was added in the plugin file ckeditor.php here:
Code:
<script type='text/javascript'> window.onload = function() {CKEDITOR.replace( 'post_content' );};</script>
I don't have the files on this PC to look at it maybe replace the above with something like this:
Code:
<script type='text/javascript'>
window.onload = function()
{
CKEDITOR.replace( 'post_content' );
this.dataProcessor.writer.setRules( 'p',{
indent : false,
breakBeforeOpen : true,
breakAfterOpen : false,
breakBeforeClose : false,
breakAfterClose : true
});
};</script>
I'm sure there's a way to add it to the plugin's javascript/config.js file instead but it has to be wrote differently like the ":" are replaced with "=" but not 100% sure what else is different!
Bookmarks