Changeset 60666 for trunk/src/wp-admin/includes/upgrade.php
- Timestamp:
- 08/26/2025 06:39:06 PM (4 months ago)
- Location:
- trunk
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
src/wp-admin/includes/upgrade.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:ignore
-
old new 1 1 # Configuration files with possibly sensitive information 2 # Files and folders related to build/test tools 3 # Files for local environment config 4 .claude 5 .env 6 .git 2 7 .htaccess 3 # Files and folders related to build/test tools 8 .phpcs.xml 4 9 .phpunit.result.cache 5 phpunit.xml 6 phpcs.xml 7 .phpcs.xml 10 /docker-compose.override.yml 11 artifacts 12 build 13 composer.lock 14 coverage 15 jsdoc 8 16 node_modules 9 17 npm-debug.log 10 build 18 packagehash.txt 19 phpcs.xml 20 phpunit.xml 21 vendor 11 22 wp-cli.local.yml 12 .git13 jsdoc14 composer.lock15 vendor16 packagehash.txt17 artifacts18 # Files for local environment config19 /docker-compose.override.yml20 .env21 coverage
-
- Property svn:ignore
-
trunk/src/wp-admin/includes/upgrade.php
r60497 r60666 881 881 if ( $wp_current_db_version < 58975 ) { 882 882 upgrade_670(); 883 upgrade_690(); 883 884 } 884 885 … … 2415 2416 } 2416 2417 } 2418 2419 /** 2420 * Executes changes made in WordPress 6.9.0. 2421 * 2422 * @ignore 2423 * @since 6.9.0 2424 * 2425 * @global int $wp_current_db_version The old (current) database version. 2426 */ 2427 function upgrade_690() { 2428 global $wp_current_db_version; 2429 2430 // Switch Hello Dolly from file to directory format. See #53323 2431 $active_plugins = get_option( 'active_plugins' ); 2432 $old_plugin = 'hello.php'; 2433 $new_plugin = 'hello-dolly/hello.php'; 2434 $key = array_search( $old_plugin, $active_plugins, true ); 2435 2436 if ( $key ) { 2437 $active_plugins[ $key ] = $new_plugin; 2438 update_option( 'active_plugins', $active_plugins ); 2439 } 2440 } 2417 2441 /** 2418 2442 * Executes changes made in WordPress 6.7.0.
Note: See TracChangeset
for help on using the changeset viewer.