Changeset 34059 for trunk/src/wp-admin/network/users.php
- Timestamp:
- 09/11/2015 09:07:45 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/network/users.php
r34025 r34059 175 175 require_once( ABSPATH . 'wp-admin/admin-header.php' ); 176 176 177 if ( isset( $_REQUEST['updated'] ) && $_REQUEST['updated'] == 'true' && ! empty( $_REQUEST['action'] ) ) { 177 $action = wp_validate_action(); 178 if ( isset( $_REQUEST['updated'] ) && $_REQUEST['updated'] == 'true' && ! empty( $action ) ) { 178 179 ?> 179 180 <div id="message" class="updated notice is-dismissible"><p> 180 181 <?php 181 switch ( $ _REQUEST['action']) {182 switch ( $action ) { 182 183 case 'delete': 183 184 _e( 'User deleted.' );
Note: See TracChangeset
for help on using the changeset viewer.