- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/class-wp-media-list-table.php
r17349 r18114 10 10 class WP_Media_List_Table extends WP_List_Table { 11 11 12 function WP_Media_List_Table() {12 function __construct() { 13 13 $this->detached = isset( $_REQUEST['detached'] ) || isset( $_REQUEST['find_detached'] ); 14 14 15 parent:: WP_List_Table( array(15 parent::__construct( array( 16 16 'plural' => 'media' 17 17 ) ); … … 138 138 if ( !$this->detached ) { 139 139 $posts_columns['parent'] = _x( 'Attached to', 'column name' ); 140 $posts_columns['comments'] = '< div class="vers"><img alt="Comments" src="' . esc_url( admin_url( 'images/comment-grey-bubble.png' ) ) . '" /></div>';140 $posts_columns['comments'] = '<span class="vers"><img alt="Comments" src="' . esc_url( admin_url( 'images/comment-grey-bubble.png' ) ) . '" /></span>'; 141 141 } 142 142 /* translators: column name */ … … 216 216 case 'title': 217 217 ?> 218 <td <?php echo $attributes ?>><strong><?php if ( $this->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>218 <td <?php echo $attributes ?>><strong><?php if ( $this->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 }; _media_states( $post ); ?></strong> 219 219 <p> 220 220 <?php
Note: See TracChangeset
for help on using the changeset viewer.