Changeset 16134
- Timestamp:
- 11/01/2010 04:24:48 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/class-wp-posts-list-table.php
r16128 r16134 554 554 555 555 get_inline_data( $post ); 556 echo '</td>'; 556 557 break; 557 558 … … 600 601 foreach ( $categories as $c ) { 601 602 $out[] = sprintf( '<a href="%s">%s</a>', 602 add_query_arg( array( 'post_type' => $post->post_type, 'category_name' => $c->slug ), 'edit.php'),603 esc_url( add_query_arg( array( 'post_type' => $post->post_type, 'category_name' => $c->slug ), 'edit.php' ) ), 603 604 esc_html( sanitize_term_field( 'name', $c->name, $c->term_id, 'category', 'display' ) ) 604 605 ); … … 620 621 foreach ( $tags as $c ) { 621 622 $out[] = sprintf( '<a href="%s">%s</a>', 622 add_query_arg( array( 'post_type' => $post->post_type, 'tag' => $c->slug ), 'edit.php'),623 esc_url( add_query_arg( array( 'post_type' => $post->post_type, 'tag' => $c->slug ), 'edit.php' ) ), 623 624 esc_html( sanitize_term_field( 'name', $c->name, $c->term_id, 'tag', 'display' ) ) 624 625 ); … … 648 649 <td <?php echo $attributes ?>><?php 649 650 printf( '<a href="%s">%s</a>', 650 add_query_arg( array( 'post_type' => $post->post_type, 'author' => get_the_author_meta( 'ID' ) ), 'edit.php'),651 esc_url( add_query_arg( array( 'post_type' => $post->post_type, 'author' => get_the_author_meta( 'ID' ) ), 'edit.php' )), 651 652 get_the_author() 652 653 );
Note: See TracChangeset
for help on using the changeset viewer.