Make WordPress Core


Ignore:
Timestamp:
03/15/2014 04:31:58 AM (11 years ago)
Author:
SergeyBiryukov
Message:

Fix .comment-grey-bubble markup and remove a stray </h5> tag.

props avryl.
fixes #27408.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/class-wp-posts-list-table.php

    r27255 r27548  
    312312        $post_status = !empty( $_REQUEST['post_status'] ) ? $_REQUEST['post_status'] : 'all';
    313313        if ( post_type_supports( $post_type, 'comments' ) && !in_array( $post_status, array( 'pending', 'draft', 'future' ) ) )
    314             $posts_columns['comments'] = '<span class="vers"><div title="' . esc_attr__( 'Comments' ) . '" class="comment-grey-bubble"></div></span>';
     314            $posts_columns['comments'] = '<span class="vers"><span title="' . esc_attr__( 'Comments' ) . '" class="comment-grey-bubble"></span></span>';
    315315
    316316        $posts_columns['date'] = __( 'Date' );
Note: See TracChangeset for help on using the changeset viewer.