Changeset 52945
- Timestamp:
- 03/17/2022 04:55:48 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-login.php
r52450 r52945 423 423 } 424 424 425 // 426 // Main. 427 // 428 425 // Check request and redirect. 429 426 $action = isset( $_REQUEST['action'] ) ? $_REQUEST['action'] : 'login'; 430 427 $errors = new WP_Error(); … … 1277 1274 $admin_email_lifespan = (int) get_option( 'admin_email_lifespan' ); 1278 1275 1279 // If `0` (or anything "falsey" as it is cast to int) is returned, the user will not be redirected 1280 // to the admin email confirmation screen. 1276 /* 1277 * If `0` (or anything "falsey" as it is cast to int) is returned, the user will not be redirected 1278 * to the admin email confirmation screen. 1279 */ 1281 1280 /** This filter is documented in wp-login.php */ 1282 1281 $admin_email_check_interval = (int) apply_filters( 'admin_email_check_interval', 6 * MONTH_IN_SECONDS );
Note: See TracChangeset
for help on using the changeset viewer.