Docs: Move `install_network()` DocBlock after the `function_exists()` call.

Props keesiemeijer.
Fixes #39478.

git-svn-id: https://develop.svn.wordpress.org/trunk@39709 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2017-01-05 12:33:34 +00:00
parent 494340c71f
commit fac3bbb51d
1 changed files with 1 additions and 2 deletions

View File

@ -861,13 +861,12 @@ function populate_roles_300() {
} }
} }
if ( !function_exists( 'install_network' ) ) :
/** /**
* Install Network. * Install Network.
* *
* @since 3.0.0 * @since 3.0.0
*
*/ */
if ( !function_exists( 'install_network' ) ) :
function install_network() { function install_network() {
if ( ! defined( 'WP_INSTALLING_NETWORK' ) ) if ( ! defined( 'WP_INSTALLING_NETWORK' ) )
define( 'WP_INSTALLING_NETWORK', true ); define( 'WP_INSTALLING_NETWORK', true );