From 6e5d66c10eef44fcc3c2bc96374a3fb20f5b6cfc Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Fri, 6 Jan 2017 21:58:23 +0000 Subject: [PATCH] Docs: Move `install_network()` DocBlock after the `function_exists()` call. Props keesiemeijer. Fixes #39478. Built from https://develop.svn.wordpress.org/trunk@39709 git-svn-id: http://core.svn.wordpress.org/trunk@39649 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/schema.php | 3 +-- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/wp-admin/includes/schema.php b/wp-admin/includes/schema.php index cd66e1924b..70b4686e2e 100644 --- a/wp-admin/includes/schema.php +++ b/wp-admin/includes/schema.php @@ -861,13 +861,12 @@ function populate_roles_300() { } } +if ( !function_exists( 'install_network' ) ) : /** * Install Network. * * @since 3.0.0 - * */ -if ( !function_exists( 'install_network' ) ) : function install_network() { if ( ! defined( 'WP_INSTALLING_NETWORK' ) ) define( 'WP_INSTALLING_NETWORK', true ); diff --git a/wp-includes/version.php b/wp-includes/version.php index f05779cc0c..2efbbb3a43 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.8-alpha-39708'; +$wp_version = '4.8-alpha-39709'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.