From 4a87aba8d283f00c92bbcca1684c305997fb6bef Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sat, 7 Mar 2026 18:05:33 +0000 Subject: [PATCH] Editor: Correct `wp_enable_real_time_collaboration` default for REST API sync route. Follow-up to [61689], [61702], [61722], [61828], [61862], [61864]. Props mindctrl, skithund, amykamala, MadtownLems, aion11, peterwilsoncc, pbiron, apermo, SergeyBiryukov. Fixes #64814. Built from https://develop.svn.wordpress.org/trunk@61865 git-svn-id: http://core.svn.wordpress.org/trunk@61152 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/option.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/option.php b/wp-includes/option.php index 40b907d282..a3352aa57f 100644 --- a/wp-includes/option.php +++ b/wp-includes/option.php @@ -2892,7 +2892,7 @@ function register_initial_settings() { 'type' => 'boolean', 'description' => __( 'Enable Real-Time Collaboration' ), 'sanitize_callback' => 'rest_sanitize_boolean', - 'default' => false, + 'default' => true, 'show_in_rest' => true, ) ); diff --git a/wp-includes/version.php b/wp-includes/version.php index 866963dc01..b476977801 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '7.0-beta3-61864'; +$wp_version = '7.0-beta3-61865'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.