X-Git-Url: https://scripts.mit.edu/gitweb/autoinstalls/wordpress.git/blobdiff_plain/03f2fa83c13c1b532284205fa7efcab9b8b2c41f..784f914b1e4b1c62d6657e86397c2e83bcee4295:/wp-admin/includes/network.php diff --git a/wp-admin/includes/network.php b/wp-admin/includes/network.php index 7f30c99d..d034f045 100644 --- a/wp-admin/includes/network.php +++ b/wp-admin/includes/network.php @@ -56,7 +56,7 @@ function allow_subdirectory_install() { * * @since 3.0.0 * - * @param bool true Whether to enable the subdirectory install feature in Multisite. Default is false. + * @param bool $allow Whether to enable the subdirectory install feature in Multisite. Default is false. */ if ( apply_filters( 'allow_subdirectory_install', false ) ) return true; @@ -376,23 +376,26 @@ function network_step2( $errors = false ) {

' . __( 'Caution:' ) . ' '; printf( /* translators: 1: wp-config.php 2: .htaccess */ - __( 'Caution: We recommend you back up your existing %1$s and %2$s files.' ), + __( 'We recommend you back up your existing %1$s and %2$s files.' ), 'wp-config.php', '.htaccess' ); } elseif ( file_exists( $home_path . 'web.config' ) ) { + echo '' . __( 'Caution:' ) . ' '; printf( /* translators: 1: wp-config.php 2: web.config */ - __( 'Caution: We recommend you back up your existing %1$s and %2$s files.' ), + __( 'We recommend you back up your existing %1$s and %2$s files.' ), 'wp-config.php', 'web.config' ); } else { + echo '' . __( 'Caution:' ) . ' '; printf( /* translators: 1: wp-config.php */ - __( 'Caution: We recommend you back up your existing %s file.' ), + __( 'We recommend you back up your existing %s file.' ), 'wp-config.php' ); }