Changeset 13541 for trunk/wp-admin/edit-attachment-rows.php
- Timestamp:
- 03/01/2010 10:45:11 PM (16 years ago)
- File:
-
- 1 edited
-
trunk/wp-admin/edit-attachment-rows.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/edit-attachment-rows.php
r13230 r13541 86 86 ?> 87 87 <td <?php echo $attributes ?>><strong><?php if ( $is_trash ) echo $att_title; else { ?><a href="<?php echo get_edit_post_link( $post->ID, true ); ?>" title="<?php echo esc_attr(sprintf(__('Edit “%s”'), $att_title)); ?>"><?php echo $att_title; ?></a><?php } ?></strong><br /> 88 <?php echo strtoupper(preg_replace('/^.*?\.(\w+)$/', '$1', get_attached_file($post->ID))); ?> 88 <?php 89 if ( preg_match( '/^.*?\.(\w+)$/', get_attached_file( $post->ID ), $matches ) ) 90 echo wp_specialchars( strtoupper( $matches[1] ) ); 91 else 92 echo strtoupper( str_replace( 'image/', '', get_post_mime_type() ) ); 93 ?> 89 94 <p> 90 95 <?php
Note: See TracChangeset
for help on using the changeset viewer.