Changeset 13243
- Timestamp:
- 02/20/2010 08:19:44 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/media.php
r13242 r13243 307 307 wp_enqueue_style( 'wp-admin' ); 308 308 wp_enqueue_style( 'colors' ); 309 if ( 0 === strpos( $content_func, 'media' ) ) 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 311 wp_enqueue_style( 'media' ); 311 312 wp_enqueue_style( 'ie' );
Note: See TracChangeset
for help on using the changeset viewer.