enable_edit_any_user_configuration, true

enable_edit_any_user_configuration, true

Appears in:
Hook Type: filter

See hook in core

Displaying hooks found in version: 7.0.3

apply_filters('enable_edit_any_user_configuration, true') is found 1 times:

  • /wp-admin/user-edit.php line 102
     */
    if ( is_multisite()
    	&& ! current_user_can( 'manage_network_users' )
    	&& $user_id !== $current_user->ID
    	&& ! apply_filters( 'enable_edit_any_user_configuration', true )
    ) {
    	wp_die( __( 'Sorry, you are not allowed to edit this user.' ) );
    }
    
    // Execute confirmed email change. See send_confirmation_on_profile_email().
    if ( IS_PROFILE_PAGE && isset( $_GET['newuseremail'] ) && $current_user->ID ) {