diff --git a/wp-admin/admin-ajax.php b/wp-admin/admin-ajax.php index 43593d32ed..4ef0eb8919 100644 --- a/wp-admin/admin-ajax.php +++ b/wp-admin/admin-ajax.php @@ -719,8 +719,6 @@ case 'replyto-comment' : $comment = get_comment($comment_id); if ( ! $comment ) die('1'); - $modes = array( 'single', 'detail', 'dashboard' ); - $mode = isset($_POST['mode']) && in_array( $_POST['mode'], $modes ) ? $_POST['mode'] : 'detail'; $position = ( isset($_POST['position']) && (int) $_POST['position']) ? (int) $_POST['position'] : '-1'; $checkbox = ( isset($_POST['checkbox']) && true == $_POST['checkbox'] ) ? 1 : 0; @@ -759,7 +757,6 @@ case 'edit-comment' : $_POST['comment_status'] = $_POST['status']; edit_comment(); - $mode = ( isset($_POST['mode']) && 'single' == $_POST['mode'] ) ? 'single' : 'detail'; $position = ( isset($_POST['position']) && (int) $_POST['position']) ? (int) $_POST['position'] : '-1'; $checkbox = ( isset($_POST['checkbox']) && true == $_POST['checkbox'] ) ? 1 : 0; $comments_listing = isset($_POST['comments_listing']) ? $_POST['comments_listing'] : ''; diff --git a/wp-admin/includes/default-list-tables.php b/wp-admin/includes/default-list-tables.php index 4627fd93a7..0fc31630a1 100644 --- a/wp-admin/includes/default-list-tables.php +++ b/wp-admin/includes/default-list-tables.php @@ -1984,7 +1984,7 @@ class WP_Comments_Table extends WP_List_Table { 'offset' => $start, 'number' => $number, 'post_id' => $post_id, - 'plural' => $comment_type, + 'type' => $comment_type, 'orderby' => @$_REQUEST['orderby'], 'order' => @$_REQUEST['order'], ); @@ -2043,7 +2043,7 @@ class WP_Comments_Table extends WP_List_Table { if ( 'top' == $which ) { ?>