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

git-svn-id: https://develop.svn.wordpress.org/trunk@24047 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin 2013-04-22 19:22:09 +00:00
parent 3fc35855e9
commit cabad11bb4
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;
}