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
This commit is contained in:
Sergey Biryukov 2017-01-06 21:58:23 +00:00
parent ead8c38f38
commit 6e5d66c10e
2 changed files with 2 additions and 3 deletions

View File

@ -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 );

View File

@ -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.