用户编辑挂钩上的Wordpress重定向

I looked through the Wordpress Hook DB and couldn't find any way to change the page that wordpress redirects to after editing a user... Does anyone know of a hook that will do this, or of another way I could accomplish the same thing?

You can filter wp_redirect only on user-edit.php;

function my_user_edit_redirect($location)
{
    return admin_url('somewhere/else.php');
}
add_action('load-user-edit.php', create_function('', '
    add_filter("wp_redirect", "my_user_edit_redirect");'));