Make WordPress Core


Ignore:
Timestamp:
05/08/2026 03:58:51 PM (16 hours ago)
Author:
desrosj
Message:

Remove real-time collaboration.

Removes all RTC related code from core. There will still be RTC related code in Gutenberg, but effectively disabled for core since nothing turns it on. The wp.sync global has also been hidden by bundling in https://github.com/WordPress/gutenberg/pull/78085.

Developed in: https://github.com/WordPress/wordpress-develop/pull/11774.

Reviewed by desrosj.
Merges [62334], [62337] to the 7.0 branch.

Props maxschmeling, ellatrix, mukesh27.
Fixes #65205.

Location:
branches/7.0
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/7.0

  • branches/7.0/src/wp-admin/options-writing.php

    r62100 r62338  
    108108<?php endforeach; ?>
    109109    </select>
    110 </td>
    111 </tr>
    112 <tr>
    113 <th scope="row"><?php _e( 'Collaboration' ); ?></th>
    114 <td>
    115     <?php if ( wp_is_collaboration_allowed() ) : ?>
    116         <label for="wp_collaboration_enabled">
    117             <input name="wp_collaboration_enabled" type="checkbox" id="wp_collaboration_enabled" value="1" <?php checked( '1', (bool) get_option( 'wp_collaboration_enabled' ) ); ?> />
    118             <?php _e( "Enable early access to real-time collaboration. Real-time collaboration may affect your website's performance." ); ?>
    119         </label>
    120     <?php else : ?>
    121         <div class="notice notice-warning inline">
    122             <p><?php _e( '<strong>Note:</strong> Real-time collaboration has been disabled.' ); ?></p>
    123         </div>
    124     <?php endif; ?>
    125110</td>
    126111</tr>
Note: See TracChangeset for help on using the changeset viewer.