Make WordPress Core

Ticket #39419: 39419.diff

File 39419.diff, 758 bytes (added by csloisel, 6 years ago)

May need phpdoc descriptions

  • src/wp-includes/ms-settings.php

    diff --git a/src/wp-includes/ms-settings.php b/src/wp-includes/ms-settings.php
    index 1afa77a..26ef463 100644
    a b  
    1818 *
    1919 * @global WP_Network $current_site The current network.
    2020 * @global object     $current_blog The current site.
     21 * @global string     $domain
     22 * @global string     $path
     23 * @global int        $blog_id
     24 * @global int        $site_id
     25 * @global bool       $public
     26 * @global string     $table_prefix
    2127 * @since 3.0.0
    2228 */
    23 global $current_site, $current_blog;
     29global $current_site, $current_blog, $domain, $path, $blog_id, $site_id, $public, $table_prefix;
    2430
    2531/** WP_Network class */
    2632require_once( ABSPATH . WPINC . '/class-wp-network.php' );