Changeset 19470
- Timestamp:
- 11/28/2011 08:35:36 PM (14 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
-
wp-admin/includes/schema.php (modified) (1 diff)
-
wp-admin/includes/upgrade.php (modified) (1 diff)
-
wp-includes/version.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/schema.php
r19411 r19470 895 895 'global_terms_enabled' => global_terms_enabled() ? '1' : '0', 896 896 'initial_db_version' => get_option( 'initial_db_version' ), 897 'active_sitewide_plugins' => array(), 897 898 ); 898 899 if ( ! $subdomain_install ) -
trunk/wp-admin/includes/upgrade.php
r19469 r19470 1255 1255 if ( $wp_current_db_version < 19390 ) 1256 1256 update_site_option( 'initial_db_version', $wp_current_db_version ); 1257 if ( $wp_current_db_version < 19470 ) { 1258 if ( false === get_site_option( 'active_sitewide_plugins' ) ) 1259 update_site_option( 'active_sitewide_plugins', array() ); 1260 } 1257 1261 } 1258 1262 -
trunk/wp-includes/version.php
r19457 r19470 12 12 * @global int $wp_db_version 13 13 */ 14 $wp_db_version = 19 389;14 $wp_db_version = 19470; 15 15 16 16 /**
Note: See TracChangeset
for help on using the changeset viewer.