Changeset 8921
- Timestamp:
- 09/17/2008 09:47:27 PM (16 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/upgrade.php
r8763 r8921 211 211 upgrade_260(); 212 212 213 if ( $wp_current_db_version < 8 539)213 if ( $wp_current_db_version < 8921 ) 214 214 upgrade_270(); 215 215 … … 753 753 754 754 function upgrade_260() { 755 global $wp_current_db_version; 756 755 757 if ( $wp_current_db_version < 8000 ) 756 758 populate_roles_260(); … … 763 765 764 766 function upgrade_270() { 767 global $wpdb, $wp_current_db_version; 768 765 769 if ( $wp_current_db_version < 8530 ) 766 770 populate_roles_270(); 771 772 // Update post_date for unpublished posts with empty timestamp 773 if ( $wp_current_db_version < 8921 ) 774 $wpdb->query( "UPDATE $wpdb->posts SET post_date = post_modified WHERE post_date = '0000-00-00 00:00:00'" ); 767 775 } 768 776 -
trunk/wp-includes/version.php
r8892 r8921 16 16 * @global int $wp_db_version 17 17 */ 18 $wp_db_version = 8 890;18 $wp_db_version = 8921; 19 19 20 20 ?>
Note: See TracChangeset
for help on using the changeset viewer.