TinyMCE: Use the correct syntax for allowing an `embed` element to be a valid child of an `object` element.
Fixes a bug in TinyMCE when using its HTML5 schema definition. props azaozz. see #22790. for trunk. ... with the right patch this time. [23142] was done in error. git-svn-id: http://core.svn.wordpress.org/trunk@23144 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
d4572cf682
commit
0a0aaaa10a
|
@ -138,7 +138,7 @@
|
|||
// Extend <object> and <embed> (#WP22790)
|
||||
ed.onPreInit.add(function(ed) {
|
||||
ed.schema.addValidElements('object[*],param[id|name|value|valuetype|type],embed[*]');
|
||||
ed.schema.addValidChildren('+object[*]');
|
||||
ed.schema.addValidChildren('+object[embed]');
|
||||
});
|
||||
|
||||
ed.onInit.add(function(ed) {
|
||||
|
|
Loading…
Reference in New Issue