Changeset 49109 for trunk/src/wp-includes/default-filters.php
- Timestamp:
- 10/08/2020 10:12:02 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/default-filters.php
r48966 r49109 277 277 add_action( 'auth_cookie_bad_hash', 'rest_cookie_collect_status' ); 278 278 add_action( 'auth_cookie_valid', 'rest_cookie_collect_status' ); 279 add_action( 'application_password_failed_authentication', 'rest_application_password_collect_status' ); 280 add_action( 'application_password_did_authenticate', 'rest_application_password_collect_status' ); 281 add_filter( 'rest_authentication_errors', 'rest_application_password_check_errors', 90 ); 279 282 add_filter( 'rest_authentication_errors', 'rest_cookie_check_errors', 100 ); 280 283 … … 428 431 add_filter( 'authenticate', 'wp_authenticate_username_password', 20, 3 ); 429 432 add_filter( 'authenticate', 'wp_authenticate_email_password', 20, 3 ); 433 add_filter( 'authenticate', 'wp_authenticate_application_password', 20, 3 ); 430 434 add_filter( 'authenticate', 'wp_authenticate_spam_check', 99 ); 431 435 add_filter( 'determine_current_user', 'wp_validate_auth_cookie' ); 432 436 add_filter( 'determine_current_user', 'wp_validate_logged_in_cookie', 20 ); 437 add_filter( 'determine_current_user', 'wp_validate_application_password', 20 ); 433 438 434 439 // Split term updates.
Note: See TracChangeset
for help on using the changeset viewer.