Revert [25202] and enforce that wp_add_inline_style() does not want <style> tags.
Prior to 3.7, these tags were not printed (and thus needed to be provided), but only in the admin and when concatenation was enabled. They should never be required. Strip them when we find them and issue a notice for incorrect usage. props atimmer, georgestephanis. fixes #24813. Built from https://develop.svn.wordpress.org/trunk@25786 git-svn-id: http://core.svn.wordpress.org/trunk@25698 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
@@ -87,10 +87,11 @@ class WP_Styles extends WP_Dependencies {
|
||||
|
||||
if ( $this->do_concat ) {
|
||||
$this->print_html .= $tag;
|
||||
$this->print_html .= $this->print_inline_style( $handle, false );
|
||||
if ( $inline_style = $this->print_inline_style( $handle, false ) )
|
||||
$this->print_html .= sprintf( "<style type='text/css'>\n%s\n</style>\n", $inline_style );
|
||||
} else {
|
||||
echo $tag;
|
||||
echo $this->print_inline_style( $handle, false );
|
||||
$this->print_inline_style( $handle );
|
||||
}
|
||||
|
||||
return true;
|
||||
|
||||
Reference in New Issue
Block a user