diff --git a/wp-includes/block-editor.php b/wp-includes/block-editor.php index 48bf0dad382..f7aa838b9b8 100644 --- a/wp-includes/block-editor.php +++ b/wp-includes/block-editor.php @@ -471,13 +471,14 @@ function get_block_editor_settings( array $custom_settings, $block_editor_contex $editor_settings['__unstableResolvedAssets'] = _wp_get_iframed_editor_assets(); $editor_settings['localAutosaveInterval'] = 15; $editor_settings['__experimentalDiscussionSettings'] = array( - 'commentOrder' => get_option( 'comment_order' ), - 'commentsPerPage' => get_option( 'comments_per_page' ), - 'defaultCommentsPage' => get_option( 'default_comments_page' ), - 'pageComments' => get_option( 'page_comments' ), - 'threadComments' => get_option( 'thread_comments' ), - 'threadCommentsDepth' => get_option( 'thread_comments_depth' ), - 'avatarURL' => get_avatar_url( + 'commentOrder' => get_option( 'comment_order' ), + 'commentsPerPage' => get_option( 'comments_per_page' ), + 'defaultCommentsPage' => get_option( 'default_comments_page' ), + 'pageComments' => get_option( 'page_comments' ), + 'threadComments' => get_option( 'thread_comments' ), + 'threadCommentsDepth' => get_option( 'thread_comments_depth' ), + 'defaultCommentStatus' => get_option( 'default_comment_status' ), + 'avatarURL' => get_avatar_url( '', array( 'size' => 96, diff --git a/wp-includes/version.php b/wp-includes/version.php index 05978080979..b3e0f2a7ff0 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.0-beta2-53258'; +$wp_version = '6.0-beta2-53259'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.