upgrade_101()

Execute changes made in WordPress 1.0.1.


Description Description


Source Source

File: wp-admin/includes/upgrade.php

624
625
626
627
628
629
630
631
632
633
634
635
* @global int  $wp_db_version
 * @global wpdb $wpdb WordPress database abstraction object.
 */
function wp_upgrade() {
    global $wp_current_db_version, $wp_db_version, $wpdb;
 
    $wp_current_db_version = __get_option( 'db_version' );
 
    // We are up-to-date. Nothing to do.
    if ( $wp_db_version == $wp_current_db_version ) {
        return;
    }

Top ↑

Changelog Changelog

Changelog
Version Description
1.0.1 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.