Changeset 48582
- Timestamp:
- 07/23/2020 06:41:41 PM (3 years ago)
- Location:
- trunk/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/upgrade.php
r48575 r48582 837 837 } 838 838 839 if ( $wp_current_db_version < 48 121) {839 if ( $wp_current_db_version < 48575 ) { 840 840 upgrade_550(); 841 841 } … … 2183 2183 } 2184 2184 2185 if ( $wp_current_db_version < 4857 2) {2185 if ( $wp_current_db_version < 48575 ) { 2186 2186 // Use more clear and inclusive language. 2187 2187 $disallowed_list = get_option( 'blacklist_keys' ); 2188 2188 2189 /* 2190 * This option key was briefly renamed `blocklist_keys`. 2191 * Account for sites that have this key present when the original key does not exist. 2192 */ 2189 2193 if ( false === $disallowed_list ) { 2190 2194 $disallowed_list = get_option( 'blocklist_keys' ); -
trunk/src/wp-includes/version.php
r48551 r48582 21 21 * @global int $wp_db_version 22 22 */ 23 $wp_db_version = 48 397;23 $wp_db_version = 48575; 24 24 25 25 /**
Note: See TracChangeset
for help on using the changeset viewer.