Make WordPress Core

Ticket #39419: 39419.2.diff

File 39419.2.diff, 920 bytes (added by jeremyfelt, 6 years ago)
  • src/wp-includes/ms-settings.php

     
    1818 *
    1919 * @global WP_Network $current_site The current network.
    2020 * @global object     $current_blog The current site.
     21 * @global string     $domain       Deprecated. The domain of the site found on load.
     22 * @global string     $path         Deprecated. The path of the site found on load.
     23 * @global int        $site_id      Deprecated. The ID of the network found on load.
     24 * @global bool       $public       Deprecated. Whether the site found on load is public.
     25 *
    2126 * @since 3.0.0
    2227 */
    23 global $current_site, $current_blog;
     28global $current_site, $current_blog, $domain, $path, $site_id, $public;
    2429
    2530/** WP_Network class */
    2631require_once( ABSPATH . WPINC . '/class-wp-network.php' );