Changeset 992

Show
Ignore:
Timestamp:
05/30/07 13:34:37 (2 years ago)
Author:
donncha
Message:

Don't need these upgrades, thanks drmike. fixes #349

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/wp-admin/upgrade-functions.php

    r972 r992  
    185185        if ( $wp_current_db_version < 4351 ) 
    186186                upgrade_old_slugs(); 
    187          
    188         if ( $wp_current_db_version < 5200 ) { 
    189                 upgrade_230(); 
    190         } 
    191187         
    192188        maybe_disable_automattic_widgets(); 
     
    578574                // Obsolete linkcategories table 
    579575                $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(); 
    588576        } 
    589577}