Changeset 45590 for trunk/src/wp-includes/class.wp-scripts.php
- Timestamp:
- 07/02/2019 11:41:16 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class.wp-scripts.php
r44403 r45590 197 197 */ 198 198 public function print_extra_script( $handle, $echo = true ) { 199 if ( ! $output = $this->get_data( $handle, 'data' ) ) { 199 $output = $this->get_data( $handle, 'data' ); 200 if ( ! $output ) { 200 201 return; 201 202 } … … 253 254 254 255 $src = $obj->src; 255 $cond_before = $cond_after = ''; 256 $cond_before = ''; 257 $cond_after = ''; 256 258 $conditional = isset( $obj->extra['conditional'] ) ? $obj->extra['conditional'] : ''; 257 259
Note: See TracChangeset
for help on using the changeset viewer.