Update the allowed attributes for html list elements. Fixes #6253 props andy and lloydbudd.
git-svn-id: http://svn.automattic.com/wordpress/trunk@7337 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
4f60026851
commit
7039083a89
|
@ -270,9 +270,14 @@ if (!CUSTOM_TAGS) {
|
|||
'tt' => array(),
|
||||
'u' => array(),
|
||||
'ul' => array (
|
||||
'class' => array ()),
|
||||
'class' => array (),
|
||||
'style' => array (),
|
||||
'type' => array ()),
|
||||
'ol' => array (
|
||||
'class' => array ()),
|
||||
'class' => array (),
|
||||
'start' => array (),
|
||||
'style' => array (),
|
||||
'type' => array ()),
|
||||
'var' => array ());
|
||||
/**
|
||||
* Kses allowed HTML elements
|
||||
|
|
Loading…
Reference in New Issue