diff --git src/wp-admin/network/index.php src/wp-admin/network/index.php
index b51fc4e560..b629e5dd67 100644
|
|
if ( ! current_user_can( 'manage_network' ) ) { |
19 | 19 | |
20 | 20 | // Used in the HTML title tag. |
21 | 21 | $title = __( 'Dashboard' ); |
22 | | $parent_file = 'index.php'; |
23 | 22 | |
24 | 23 | $overview = '<p>' . __( 'Welcome to your Network Admin. This area of the Administration Screens is used for managing all aspects of your Multisite Network.' ) . '</p>'; |
25 | 24 | $overview .= '<p>' . __( 'From here you can:' ) . '</p>'; |
diff --git src/wp-admin/network/settings.php src/wp-admin/network/settings.php
index 7dff74d4ad..c1c9190711 100644
|
|
if ( ! current_user_can( 'manage_network_options' ) ) { |
19 | 19 | |
20 | 20 | // Used in the HTML title tag. |
21 | 21 | $title = __( 'Network Settings' ); |
22 | | $parent_file = 'settings.php'; |
23 | 22 | |
24 | 23 | // Handle network admin email change requests. |
25 | 24 | if ( ! empty( $_GET['network_admin_hash'] ) ) { |
diff --git src/wp-admin/network/sites.php src/wp-admin/network/sites.php
index 402c047312..73b7df045b 100644
|
|
if ( ! current_user_can( 'manage_sites' ) ) { |
15 | 15 | } |
16 | 16 | |
17 | 17 | $wp_list_table = _get_list_table( 'WP_MS_Sites_List_Table' ); |
18 | | $pagenum = $wp_list_table->get_pagenum(); |
19 | | |
20 | | // Used in the HTML title tag. |
21 | | $title = __( 'Sites' ); |
22 | | $parent_file = 'sites.php'; |
23 | 18 | |
24 | 19 | add_screen_option( 'per_page' ); |
25 | 20 | |