Ticket #11976: wordpress.diff
| File wordpress.diff, 748 bytes (added by vericgar, 3 years ago) |
|---|
-
wp-admin/includes/media.php
307 307 wp_enqueue_style( 'wp-admin' ); 308 308 wp_enqueue_style( 'colors' ); 309 309 // Check callback name for 'media' 310 if ( ( is_array( $content_func ) && ! empty( $content_func[1] ) && 0 === strpos( (string) $content_func[1], 'media' ) ) || 0 === strpos( $content_func, 'media' ) ) 310 if ( ( is_array( $content_func ) && ! empty( $content_func[1] ) && 0 === strpos( (string) $content_func[1], 'media' ) ) || 311 ( ! is_array( $content_func ) && 0 === strpos( $content_func, 'media' ) ) ) 311 312 wp_enqueue_style( 'media' ); 312 313 wp_enqueue_style( 'ie' ); 313 314 ?>
