Changeset 45757 for trunk/src/wp-admin/includes/upgrade.php
- Timestamp:
- 08/07/2019 12:03:39 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/upgrade.php
r45747 r45757 816 816 } 817 817 818 if ( $wp_current_db_version < 45744 ) { 819 upgrade_530(); 820 } 821 818 822 maybe_disable_link_manager(); 819 823 … … 2116 2120 2117 2121 /** 2122 * Executes changes made in WordPress 5.3.0. 2123 * 2124 * @ignore 2125 * @since 5.3.0 2126 */ 2127 function upgrade_530() { 2128 // Do `add_option()` rather than overwriting with `update_option()` as this may run 2129 // after an admin was redirected to the email verification screen, 2130 // and the option was updated. 2131 add_option( 'admin_email_lifespan', 0 ); 2132 } 2133 2134 /** 2118 2135 * Executes network-level upgrade routines. 2119 2136 *
Note: See TracChangeset
for help on using the changeset viewer.