Changeset 13227
- Timestamp:
- 02/19/2010 05:56:40 PM (15 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/schema.php
r13137 r13227 82 82 KEY comment_post_ID (comment_post_ID), 83 83 KEY comment_approved_date_gmt (comment_approved,comment_date_gmt), 84 KEY comment_date_gmt (comment_date_gmt) 84 KEY comment_date_gmt (comment_date_gmt), 85 KEY comment_parent (comment_parent) 85 86 ) $charset_collate; 86 87 CREATE TABLE $wpdb->links ( -
trunk/wp-admin/includes/upgrade.php
r13209 r13227 1103 1103 */ 1104 1104 function upgrade_300() { 1105 populate_roles_300(); 1106 if ( is_multisite() && is_main_site() && ! defined( 'MULTISITE' ) && get_site_option( 'siteurl' ) === false ) 1107 add_site_option( 'siteurl', '' ); 1105 global $wp_current_db_version; 1106 1107 if ( $wp_current_db_version < 12751 ) { 1108 populate_roles_300(); 1109 if ( is_multisite() && is_main_site() && ! defined( 'MULTISITE' ) && get_site_option( 'siteurl' ) === false ) 1110 add_site_option( 'siteurl', '' ); 1111 } 1108 1112 } 1109 1113 -
trunk/wp-includes/version.php
r12753 r13227 16 16 * @global int $wp_db_version 17 17 */ 18 $wp_db_version = 1 2751;18 $wp_db_version = 13226; 19 19 20 20 /**
Note: See TracChangeset
for help on using the changeset viewer.