Changeset 46324
- Timestamp:
- 09/26/2019 03:44:10 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-login.php
r46323 r46324 591 591 /** 592 592 * Filters the interval for redirecting the user to the admin email confirmation screen. 593 * If `0` (zero) is returned, the user will not be redirected.593 * If `0` (zero), or any :falsey" value is returned, the user will not be redirected. 594 594 * 595 595 * @since 5.3.0 … … 1244 1244 $admin_email_lifespan = (int) get_option( 'admin_email_lifespan' ); 1245 1245 1246 // If `0` (or anything "falsey" as it is cast to int) is returned, the user will not be redirected1247 // to the admin email confirmation screen.1248 1246 /** This filter is documented in wp-login.php */ 1249 1247 $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.