-
Notifications
You must be signed in to change notification settings - Fork 183
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
504 copy paste plugins inside ckeditor refer to same instance #572
504 copy paste plugins inside ckeditor refer to same instance #572
Conversation
Codecov Report
@@ Coverage Diff @@
## master #572 +/- ##
==========================================
+ Coverage 72.72% 73.22% +0.49%
==========================================
Files 19 19
Lines 825 829 +4
Branches 90 91 +1
==========================================
+ Hits 600 607 +7
+ Misses 200 198 -2
+ Partials 25 24 -1
Continue to review full report at Codecov.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me!
Looks Good! 👍 |
@nichoski do you think, given what we've seen happen here, that a test case could be written for this? |
@marksweb yes, it's the least I could do. I just added a test case to this. |
This was merged into master, but I don't see it in any of the releases. Is this planned to be added in a new release? Or is it already added and I have issues finding it? |
This is fixing a severe bug caused by pull request 569. In pull request 569, after the referenced plugin is copied successfully, the post_copy method is removing the other child plugins of the plugin we are pasting into, because the other child plugins are not inside the plugins_ziplist provided in the arguments of the post_copy method. This fix is including the existing plugins as well, so they are not touched by the post_copy method.