diff --git a/wp-admin/includes/schema.php b/wp-admin/includes/schema.php index 1f772c929f..911314ea2c 100644 --- a/wp-admin/includes/schema.php +++ b/wp-admin/includes/schema.php @@ -565,7 +565,7 @@ function populate_options( array $options = array() ) { 'wp_notes_notify' => 1, // 7.0.0 - 'enable_real_time_collaboration' => 1, + 'enable_real_time_collaboration' => 0, ); // 3.3.0 diff --git a/wp-includes/option.php b/wp-includes/option.php index 970ac39652..5ed8bd5616 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' => true, + 'default' => false, 'show_in_rest' => true, ) ); diff --git a/wp-includes/version.php b/wp-includes/version.php index 382dd1a7ff..150c0d1d0b 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '7.0-alpha-61701'; +$wp_version = '7.0-alpha-61702'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.