diff --git a/wp-includes/comment.php b/wp-includes/comment.php index d09dc4967c..a16a33c132 100644 --- a/wp-includes/comment.php +++ b/wp-includes/comment.php @@ -3692,7 +3692,7 @@ function wp_comments_personal_data_exporter( $email_address, $page = 1 ) { 'author_email' => $email_address, 'number' => $number, 'paged' => $page, - 'order_by' => 'comment_ID', + 'orderby' => 'comment_ID', 'order' => 'ASC', 'update_comment_meta_cache' => false, ) @@ -3815,7 +3815,7 @@ function wp_comments_personal_data_eraser( $email_address, $page = 1 ) { 'author_email' => $email_address, 'number' => $number, 'paged' => $page, - 'order_by' => 'comment_ID', + 'orderby' => 'comment_ID', 'order' => 'ASC', 'include_unapproved' => true, ) diff --git a/wp-includes/version.php b/wp-includes/version.php index 6fbeb0a26e..b1eb594777 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.2-beta1-55323'; +$wp_version = '6.2-beta1-55324'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.