Ticket #26858: 26858.diff
| File 26858.diff, 1.8 KB (added by , 12 years ago) |
|---|
-
src/wp-admin/includes/schema.php
98 98 comment_parent bigint(20) unsigned NOT NULL default '0', 99 99 user_id bigint(20) unsigned NOT NULL default '0', 100 100 PRIMARY KEY (comment_ID), 101 KEY comment_post_ID (comment_post_ID),101 KEY comment_post_ID_content (comment_post_ID, comment_content(255)), 102 102 KEY comment_approved_date_gmt (comment_approved,comment_date_gmt), 103 103 KEY comment_date_gmt (comment_date_gmt), 104 104 KEY comment_parent (comment_parent) -
src/wp-admin/includes/upgrade.php
411 411 if ( $wp_current_db_version < 26691 ) 412 412 upgrade_380(); 413 413 414 if ( $wp_current_db_version < 26692 ) 415 upgrade_390(); 416 414 417 maybe_disable_link_manager(); 415 418 416 419 maybe_disable_automattic_widgets(); … … 1251 1254 deactivate_plugins( array( 'mp6/mp6.php' ), true ); 1252 1255 } 1253 1256 } 1257 1254 1258 /** 1259 * Execute changes made in WordPress 3.9.0. 1260 * 1261 * @since 3.9.0 1262 */ 1263 function upgrade_390() { 1264 global $wp_current_db_version, $wpdb; 1265 if ( $wp_current_db_version < 26692 ) { 1266 drop_index( $wpdb->comments, 'comment_post_ID' ); 1267 } 1268 } 1269 1270 /** 1255 1271 * Execute network level changes 1256 1272 * 1257 1273 * @since 3.0.0 -
src/wp-includes/version.php
11 11 * 12 12 * @global int $wp_db_version 13 13 */ 14 $wp_db_version = 2669 1;14 $wp_db_version = 26692; 15 15 16 16 /** 17 17 * Holds the TinyMCE version