Skip to content

Commit 0f68337

Browse files
committed
Merge branch 't/11850'
2 parents cce1107 + 741b7ef commit 0f68337

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

CHANGES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ Fixed Issues:
2222
* [#11788](http://dev.ckeditor.com/ticket/11788): Fixed: [Filter](http://docs.ckeditor.com/#!/api/CKEDITOR.htmlParser.filter) rules are not applied inside elements with `contenteditable` attribute set to `true`.
2323
* [#11798](http://dev.ckeditor.com/ticket/11798): Fixed: Inserting non-editable element inside a table cell breaks the table badly.
2424
* [#11793](http://dev.ckeditor.com/ticket/11793): Fixed: Drop down is not "on" when clicking it while editor is blurred.
25+
* [#11850](http://dev.ckeditor.com/ticket/11850): Fixed: Filter downcasting fake object to element it replaced is not applied if fake object element is non-editable.
2526

2627
Other changes:
2728

plugins/fakeobjects/plugin.js

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,11 @@
6464
var dataProcessor = editor.dataProcessor,
6565
htmlFilter = dataProcessor && dataProcessor.htmlFilter;
6666

67-
if ( htmlFilter )
68-
htmlFilter.addRules( htmlFilterRules );
67+
if ( htmlFilter ) {
68+
htmlFilter.addRules( htmlFilterRules, {
69+
applyToAll: true
70+
} );
71+
}
6972
}
7073
} );
7174

0 commit comments

Comments
 (0)