Changeset 25786 for trunk/src/wp-includes/class.wp-styles.php
- Timestamp:
- 10/15/2013 02:34:33 PM (13 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/class.wp-styles.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class.wp-styles.php
r25202 r25786 88 88 if ( $this->do_concat ) { 89 89 $this->print_html .= $tag; 90 $this->print_html .= $this->print_inline_style( $handle, false ); 90 if ( $inline_style = $this->print_inline_style( $handle, false ) ) 91 $this->print_html .= sprintf( "<style type='text/css'>\n%s\n</style>\n", $inline_style ); 91 92 } else { 92 93 echo $tag; 93 echo $this->print_inline_style( $handle, false );94 $this->print_inline_style( $handle ); 94 95 } 95 96
Note: See TracChangeset
for help on using the changeset viewer.