Changeset 46811 for trunk/src/wp-admin/users.php
- Timestamp:
- 12/03/2019 01:56:25 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/users.php
r45932 r46811 457 457 458 458 if ( $wp_list_table->current_action() && ! empty( $_REQUEST['users'] ) ) { 459 $screen = get_current_screen()->id; 460 $sendback = wp_get_referer(); 459 461 $userids = $_REQUEST['users']; 460 $sendback = wp_get_referer(); 461 462 /** This action is documented in wp-admin/edit-comments.php */ 463 $sendback = apply_filters( 'handle_bulk_actions-' . get_current_screen()->id, $sendback, $wp_list_table->current_action(), $userids ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores 462 463 /** This action is documented in wp-admin/edit.php */ 464 $sendback = apply_filters( "handle_bulk_actions-{$screen}", $sendback, $wp_list_table->current_action(), $userids ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores 464 465 465 466 wp_safe_redirect( $sendback );
Note: See TracChangeset
for help on using the changeset viewer.