Make WordPress Core


Ignore:
Timestamp:
12/23/2010 05:21:29 PM (14 years ago)
Author:
ryan
Message:

Fix comment reply colspan. Props garyc40. fixes #15876

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/template.php

    r17102 r17124  
    331331        return;
    332332    }
    333 
    334     $wp_list_table = get_list_table('WP_Comments_List_Table');
     333   
     334    if ( $mode == 'single' ) {
     335        $wp_list_table = get_list_table('WP_Post_Comments_List_Table');
     336    } else {
     337        $wp_list_table = get_list_table('WP_Comments_List_Table');
     338    }
    335339
    336340?>
Note: See TracChangeset for help on using the changeset viewer.