mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2025-10-16 12:05:38 +00:00
* Add span to the list of allowed tags in plugin sections in plugin details modal.
* Don't strip class attribute from div/span tags in plugin sections. props tellyworth. see #28884. git-svn-id: https://develop.svn.wordpress.org/trunk@29511 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
e22782e068
commit
de313ebf30
@ -337,7 +337,8 @@ function install_plugin_information() {
|
||||
'a' => array( 'href' => array(), 'title' => array(), 'target' => array() ),
|
||||
'abbr' => array( 'title' => array() ), 'acronym' => array( 'title' => array() ),
|
||||
'code' => array(), 'pre' => array(), 'em' => array(), 'strong' => array(),
|
||||
'div' => array(), 'p' => array(), 'ul' => array(), 'ol' => array(), 'li' => array(),
|
||||
'div' => array( 'class' => array() ), 'span' => array( 'class' => array() ),
|
||||
'p' => array(), 'ul' => array(), 'ol' => array(), 'li' => array(),
|
||||
'h1' => array(), 'h2' => array(), 'h3' => array(), 'h4' => array(), 'h5' => array(), 'h6' => array(),
|
||||
'img' => array( 'src' => array(), 'class' => array(), 'alt' => array() )
|
||||
);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user