Changeset 51475 for trunk/src/wp-admin/network/users.php
- Timestamp:
- 07/22/2021 01:51:58 PM (23 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/network/users.php
r51189 r51475 30 30 if ( $id > 1 ) { 31 31 $_POST['allusers'] = array( $id ); // confirm_delete_users() can only handle arrays. 32 33 // Used in the HTML title tag. 32 34 $title = __( 'Users' ); 33 35 $parent_file = 'users.php'; 36 34 37 require_once ABSPATH . 'wp-admin/admin-header.php'; 38 35 39 echo '<div class="wrap">'; 36 40 confirm_delete_users( $_POST['allusers'] ); 37 41 echo '</div>'; 42 38 43 require_once ABSPATH . 'wp-admin/admin-footer.php'; 39 44 } else { … … 60 65 wp_die( __( 'Sorry, you are not allowed to access this page.' ), 403 ); 61 66 } 67 68 // Used in the HTML title tag. 62 69 $title = __( 'Users' ); 63 70 $parent_file = 'users.php'; 71 64 72 require_once ABSPATH . 'wp-admin/admin-header.php'; 73 65 74 echo '<div class="wrap">'; 66 75 confirm_delete_users( $_POST['allusers'] ); 67 76 echo '</div>'; 77 68 78 require_once ABSPATH . 'wp-admin/admin-footer.php'; 69 79 exit; … … 207 217 exit; 208 218 } 219 220 // Used in the HTML title tag. 209 221 $title = __( 'Users' ); 210 222 $parent_file = 'users.php';
Note: See TracChangeset
for help on using the changeset viewer.