From fac3bbb51d5c921b54ad0805ec3ff7dd92c45b16 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Thu, 5 Jan 2017 12:33:34 +0000 Subject: [PATCH] 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 --- src/wp-admin/includes/schema.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/wp-admin/includes/schema.php b/src/wp-admin/includes/schema.php index cd66e1924b..70b4686e2e 100644 --- a/src/wp-admin/includes/schema.php +++ b/src/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 );