Changeset 53011 for trunk/src/wp-admin/includes/upgrade.php
- Timestamp:
- 03/29/2022 12:41:00 PM (18 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/upgrade.php
r52662 r53011 846 846 } 847 847 848 if ( $wp_current_db_version < 53011 ) { 849 upgrade_600(); 850 } 851 848 852 maybe_disable_link_manager(); 849 853 … … 2284 2288 2285 2289 /** 2290 * Executes changes made in WordPress 6.0.0. 2291 * 2292 * @ignore 2293 * @since 6.0.0 2294 * 2295 * @global int $wp_current_db_version The old (current) database version. 2296 */ 2297 function upgrade_600() { 2298 global $wp_current_db_version; 2299 2300 if ( $wp_current_db_version < 53011 ) { 2301 wp_update_user_counts(); 2302 } 2303 } 2304 2305 /** 2286 2306 * Executes network-level upgrade routines. 2287 2307 *
Note: See TracChangeset
for help on using the changeset viewer.