]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-admin/includes/network.php
WordPress 4.5
[autoinstalls/wordpress.git] / wp-admin / includes / network.php
index 7f30c99d07a04400018e90a74e7ca3199dfe5381..d034f045cc7bb48e600aa71b2281c8f9dd283255 100644 (file)
@@ -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 ) {
                <p><?php _e( 'Complete the following steps to enable the features for creating a network of sites.' ); ?></p>
                <div class="updated inline"><p><?php
                        if ( file_exists( $home_path . '.htaccess' ) ) {
+                               echo '<strong>' . __( 'Caution:' ) . '</strong> ';
                                printf(
                                        /* translators: 1: wp-config.php 2: .htaccess */
-                                       __( '<strong>Caution:</strong> 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.' ),
                                        '<code>wp-config.php</code>',
                                        '<code>.htaccess</code>'
                                );
                        } elseif ( file_exists( $home_path . 'web.config' ) ) {
+                               echo '<strong>' . __( 'Caution:' ) . '</strong> ';
                                printf(
                                        /* translators: 1: wp-config.php 2: web.config */
-                                       __( '<strong>Caution:</strong> 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.' ),
                                        '<code>wp-config.php</code>',
                                        '<code>web.config</code>'
                                );
                        } else {
+                               echo '<strong>' . __( 'Caution:' ) . '</strong> ';
                                printf(
                                        /* translators: 1: wp-config.php */
-                                       __( '<strong>Caution:</strong> We recommend you back up your existing %s file.' ),
+                                       __( 'We recommend you back up your existing %s file.' ),
                                        '<code>wp-config.php</code>'
                                );
                        }