WP Styles: Correctly print 'after' data when scripts are concatenated. props stephenh1988. fixes #20836.

git-svn-id: http://core.svn.wordpress.org/trunk@24047 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Andrew Nacin 2013-04-22 19:22:09 +00:00
parent d095eac796
commit 0fa23c1ac2
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ class WP_Styles extends WP_Dependencies {
$this->concat .= "$handle,";
$this->concat_version .= "$handle$ver";
$this->print_code .= $this->get_data( $handle, 'after' );
$this->print_code .= $this->print_inline_style( $handle, false );
return true;
}