diff --git a/wp-includes/comment.php b/wp-includes/comment.php index ae759c04f5..ba60070fd7 100644 --- a/wp-includes/comment.php +++ b/wp-includes/comment.php @@ -1003,12 +1003,6 @@ function get_page_of_comment( $comment_ID, $args = array() ) { if ( $args['max_depth'] > 1 && 0 != $comment->comment_parent ) return get_page_of_comment( $comment->comment_parent, $args ); - if ( 'desc' === get_option( 'comment_order' ) ) { - $compare = 'after'; - } else { - $compare = 'before'; - } - $comment_args = array( 'type' => $args['type'], 'post_id' => $comment->comment_post_ID, @@ -1019,7 +1013,7 @@ function get_page_of_comment( $comment_ID, $args = array() ) { 'date_query' => array( array( 'column' => "$wpdb->comments.comment_date_gmt", - $compare => $comment->comment_date_gmt, + 'before' => $comment->comment_date_gmt, ) ), ); diff --git a/wp-includes/version.php b/wp-includes/version.php index e4290a6584..a24dd9839b 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.7.1-alpha-39661'; +$wp_version = '4.7.1-alpha-39664'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.