Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion src/wp-includes/ms-settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,15 @@
*
* @global WP_Network $current_site The current network.
* @global object $current_blog The current site.
* @global string $domain
* @global string $path
* @global int $blog_id
* @global int $site_id
* @global bool $public
* @global string $table_prefix
* @since 3.0.0
*/
global $current_site, $current_blog;
global $current_site, $current_blog, $domain, $path, $blog_id, $site_id, $public, $table_prefix;

/** WP_Network class */
require_once( ABSPATH . WPINC . '/class-wp-network.php' );
Expand Down