Changeset 19410 for trunk/wp-admin/includes/schema.php
- Timestamp:
- 11/22/2011 09:50:50 PM (14 years ago)
- File:
-
- 1 edited
-
trunk/wp-admin/includes/schema.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/schema.php
r19249 r19410 331 331 */ 332 332 function populate_options() { 333 global $wpdb, $wp_db_version, $current_site ;333 global $wpdb, $wp_db_version, $current_site, $wp_db_current_db_version; 334 334 335 335 $guessurl = wp_guess_url(); … … 481 481 ); 482 482 483 // 3.3 484 if ( ! is_multisite() ) { 485 $options['initial_db_version'] = ! empty( $wp_db_current_db_version ) && $wp_current_db_version < $wp_db_version 486 ? $wp_current_db_version : $wp_db_version; 487 } 488 483 489 // 3.0 multisite 484 490 if ( is_multisite() ) { … … 887 893 'upload_space_check_disabled' => '0', 888 894 'subdomain_install' => intval( $subdomain_install ), 889 'global_terms_enabled' => global_terms_enabled() ? '1' : '0' 895 'global_terms_enabled' => global_terms_enabled() ? '1' : '0', 896 'initial_db_version' => get_option( 'initial_db_version' ), 890 897 ); 891 898 if ( ! $subdomain_install )
Note: See TracChangeset
for help on using the changeset viewer.