diff -r 490d5cc509ed -r cf61fcea0001 wp/wp-admin/network/upgrade.php --- a/wp/wp-admin/network/upgrade.php Tue Jun 09 11:14:17 2015 +0000 +++ b/wp/wp-admin/network/upgrade.php Mon Oct 14 17:39:30 2019 +0200 @@ -10,9 +10,6 @@ /** Load WordPress Administration Bootstrap */ require_once( dirname( __FILE__ ) . '/admin.php' ); -if ( ! is_multisite() ) - wp_die( __( 'Multisite support is not enabled.' ) ); - require_once( ABSPATH . WPINC . '/http.php' ); $title = __( 'Upgrade Network' ); @@ -29,17 +26,18 @@ get_current_screen()->set_help_sidebar( '

' . __('For more information:') . '

' . - '

' . __('Documentation on Upgrade Network') . '

' . - '

' . __('Support Forums') . '

' + '

' . __('Documentation on Upgrade Network') . '

' . + '

' . __('Support Forums') . '

' ); 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 ); +if ( ! current_user_can( 'upgrade_network' ) ) { + wp_die( __( 'Sorry, you are not allowed to access this page.' ), 403 ); +} echo '
'; -echo '

' . __( 'Upgrade Network' ) . '

'; +echo '

' . __( 'Upgrade Network' ) . '

'; $action = isset($_GET['action']) ? $_GET['action'] : 'show'; @@ -48,25 +46,42 @@ $n = ( isset($_GET['n']) ) ? intval($_GET['n']) : 0; if ( $n < 5 ) { + /** + * @global string $wp_db_version + */ global $wp_db_version; update_site_option( 'wpmu_upgrade_site', $wp_db_version ); } - $blogs = $wpdb->get_results( "SELECT blog_id FROM {$wpdb->blogs} WHERE site_id = '{$wpdb->siteid}' AND spam = '0' AND deleted = '0' AND archived = '0' ORDER BY registered DESC LIMIT {$n}, 5", ARRAY_A ); - if ( empty( $blogs ) ) { + $site_ids = get_sites( array( + 'spam' => 0, + 'deleted' => 0, + 'archived' => 0, + 'network_id' => get_current_network_id(), + 'number' => 5, + 'offset' => $n, + 'fields' => 'ids', + 'order' => 'DESC', + 'orderby' => 'id', + ) ); + if ( empty( $site_ids ) ) { echo '

' . __( 'All done!' ) . '

'; break; } echo ""; ?>

@@ -108,17 +123,17 @@ default: if ( get_site_option( 'wpmu_upgrade_site' ) != $GLOBALS['wp_db_version'] ) : ?> -

+

-

-

+

+