- Timestamp:
- 01/01/2015 07:54:53 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/template.php
r30983 r31019 413 413 */ 414 414 function wp_comment_reply($position = '1', $checkbox = false, $mode = 'single', $table_row = true) { 415 415 global $wp_list_table; 416 416 /** 417 417 * Filter the in-line comment reply-to form output in the Comments … … 436 436 } 437 437 438 if ( $mode == 'single' ) { 439 $wp_list_table = _get_list_table('WP_Post_Comments_List_Table'); 440 } else { 441 $wp_list_table = _get_list_table('WP_Comments_List_Table'); 438 if ( ! $wp_list_table ) { 439 if ( $mode == 'single' ) { 440 $wp_list_table = _get_list_table('WP_Post_Comments_List_Table'); 441 } else { 442 $wp_list_table = _get_list_table('WP_Comments_List_Table'); 443 } 442 444 } 443 445
Note: See TracChangeset
for help on using the changeset viewer.