Make WordPress Core


Ignore:
Timestamp:
03/30/2014 09:07:04 PM (12 years ago)
Author:
nacin
Message:

Cleanups for audio/video metadata, see [27862].

see #27574.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/edit-form-advanced.php

    r27862 r27864  
    141141    add_action( 'edit_form_after_title', 'edit_form_image_editor' );
    142142
    143     if ( preg_match( '#^audio#', $post->post_mime_type ) ) {
     143    if ( 0 === strpos( $post->post_mime_type, 'audio/' ) ) {
    144144        add_meta_box( 'attachment-id3', __( 'Metadata' ), 'attachment_id3_data_meta_box', null, 'normal', 'core' );
    145145    }
Note: See TracChangeset for help on using the changeset viewer.