// Because custom actions could be accessing $_REQUEST directly.
if(!is_null($vars->raw_request)){
global$real_request;
$real_request=$_REQUEST;
$_REQUEST=$vars->raw_request;
}
// Run the custom action as Core does. See note above.
// Run the custom action as Core does. See note above.
$return_url=apply_filters('handle_bulk_actions-'.$vars->current_screen->id,$return_url,$vars->action,$vars->posts);// Core violates its own standard by using a hyphen in the hook name. @codingStandardsIgnoreLine
$return_url=apply_filters('handle_bulk_actions-'.$vars->current_screen->id,$return_url,$vars->action,$vars->posts);// Core violates its own standard by using a hyphen in the hook name. @codingStandardsIgnoreLine
// If $_REQUEST was overwritten, restore the original.
if(isset($real_request)){
$_REQUEST=$real_request;
}
// Can't get much more than this in terms of success or failure.
// Can't get much more than this in terms of success or failure.