]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-admin/network/upgrade.php
Wordpress 4.6
[autoinstalls/wordpress.git] / wp-admin / network / upgrade.php
index c885a8488911f399e2723ba0f950813585539ec3..199838cf57233b44c367ffd181aeae2e27cab23e 100644 (file)
@@ -36,7 +36,7 @@ get_current_screen()->set_help_sidebar(
 require_once( ABSPATH . 'wp-admin/admin-header.php' );
 
 if ( ! current_user_can( 'manage_network' ) )
-       wp_die( __( 'You do not have permission to access this page.' ), 403 );
+       wp_die( __( 'Sorry, you are not allowed to access this page.' ), 403 );
 
 echo '<div class="wrap">';
 echo '<h1>' . __( 'Upgrade Network' ) . '</h1>';
@@ -69,7 +69,11 @@ switch ( $action ) {
 
                        echo "<li>$siteurl</li>";
 
-                       $response = wp_remote_get( $upgrade_url, array( 'timeout' => 120, 'httpversion' => '1.1' ) );
+                       $response = wp_remote_get( $upgrade_url, array(
+                               'timeout'     => 120,
+                               'httpversion' => '1.1',
+                               'sslverify'   => false,
+                       ) );
                        if ( is_wp_error( $response ) ) {
                                wp_die( sprintf(
                                        /* translators: 1: site url, 2: server error message */
@@ -92,7 +96,7 @@ switch ( $action ) {
                         *
                         * @since MU
                         *
-                        * @param int $blog_id The id of the blog.
+                        * @param int $blog_id The Site ID.
                         */
                        do_action( 'wpmu_upgrade_site', $details[ 'blog_id' ] );
                }