Changeset 992
- Timestamp:
- 05/30/07 13:34:37 (2 years ago)
- Files:
-
- trunk/wp-admin/upgrade-functions.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/wp-admin/upgrade-functions.php
r972 r992 185 185 if ( $wp_current_db_version < 4351 ) 186 186 upgrade_old_slugs(); 187 188 if ( $wp_current_db_version < 5200 ) {189 upgrade_230();190 }191 187 192 188 maybe_disable_automattic_widgets(); … … 578 574 // Obsolete linkcategories table 579 575 $wpdb->query('DROP TABLE IF EXISTS ' . $wpdb->prefix . 'linkcategories'); 580 }581 }582 583 function upgrade_230() {584 global $wp_current_db_version;585 586 if ( $wp_current_db_version < 5200 ) {587 populate_roles_230();588 576 } 589 577 }
