Prevent WP_Styles::do_item() from adding its own style tags when concatenation is disabled. props stephenharris. fixes #24813.

git-svn-id: https://develop.svn.wordpress.org/trunk@25202 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2013-09-01 13:14:49 +00:00
parent 4e75fe1bf1
commit 43c76d1751
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@ class WP_Styles extends WP_Dependencies {
$this->print_html .= $this->print_inline_style( $handle, false );
} else {
echo $tag;
$this->print_inline_style( $handle );
echo $this->print_inline_style( $handle, false );
}
return true;