Changeset 27864 for trunk/src/wp-admin/includes/media.php
- Timestamp:
- 03/30/2014 09:07:04 PM (12 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-admin/includes/media.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/media.php
r27862 r27864 2663 2663 <p> 2664 2664 <label for="attachment_caption"><strong><?php _e( 'Caption' ); ?></strong><?php 2665 if ( preg_match( '#^ audio|video#', $post->post_mime_type ) ): ?>: <?php2665 if ( preg_match( '#^(audio|video)/#', $post->post_mime_type ) ): ?>: <?php 2666 2666 _e( "Custom label for item in a playlist. If empty, the file's available data is used." ); 2667 2667 endif ?></label><br /> … … 2689 2689 2690 2690 <label for="content"><strong><?php _e( 'Description' ); ?></strong><?php 2691 if ( preg_match( '#^ audio|video#', $post->post_mime_type ) ): ?>: <?php2691 if ( preg_match( '#^(audio|video)/#', $post->post_mime_type ) ): ?>: <?php 2692 2692 _e( 'Displayed on attachment pages.' ); 2693 2693 endif ?></label> … … 2752 2752 endif; 2753 2753 2754 if ( preg_match( '#^(audio|video) #', $post->post_mime_type ) ):2754 if ( preg_match( '#^(audio|video)/#', $post->post_mime_type ) ): 2755 2755 2756 2756 /**
Note: See TracChangeset
for help on using the changeset viewer.