Plugins: Don't strip line breaks and blockquote elements in the plugin information modal.
Fixes #40679. Built from https://develop.svn.wordpress.org/trunk@40633 git-svn-id: http://core.svn.wordpress.org/trunk@40494 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
c000e99d6f
commit
0cd74a6d6e
|
@ -2817,6 +2817,14 @@ div.action-links {
|
|||
border: 1px solid #ccc;
|
||||
}
|
||||
|
||||
#plugin-information blockquote {
|
||||
border-right: 2px solid #ddd;
|
||||
color: #666;
|
||||
font-style: italic;
|
||||
margin: 1em 0;
|
||||
padding: 0 1em 0 0;
|
||||
}
|
||||
|
||||
/* rtl:ignore */
|
||||
#plugin-information .review {
|
||||
overflow: hidden; /* clearfix */
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -2817,6 +2817,14 @@ div.action-links {
|
|||
border: 1px solid #ccc;
|
||||
}
|
||||
|
||||
#plugin-information blockquote {
|
||||
border-left: 2px solid #ddd;
|
||||
color: #666;
|
||||
font-style: italic;
|
||||
margin: 1em 0;
|
||||
padding: 0 0 0 1em;
|
||||
}
|
||||
|
||||
/* rtl:ignore */
|
||||
#plugin-information .review {
|
||||
overflow: hidden; /* clearfix */
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -480,9 +480,10 @@ function install_plugin_information() {
|
|||
'abbr' => array( 'title' => array() ), 'acronym' => array( 'title' => array() ),
|
||||
'code' => array(), 'pre' => array(), 'em' => array(), 'strong' => array(),
|
||||
'div' => array( 'class' => array() ), 'span' => array( 'class' => array() ),
|
||||
'p' => array(), 'ul' => array(), 'ol' => array(), 'li' => array(),
|
||||
'p' => array(), 'br' => 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() )
|
||||
'img' => array( 'src' => array(), 'class' => array(), 'alt' => array() ),
|
||||
'blockquote' => array( 'cite' => true ),
|
||||
);
|
||||
|
||||
$plugins_section_titles = array(
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.8-alpha-40632';
|
||||
$wp_version = '4.8-alpha-40633';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue