upgrade_372

The timeline below displays how wordpress function upgrade_372 has changed across different WordPress versions. If a version is not listed, refer to the next available version below.

WordPress Version: 5.9

/**
 * Execute changes made in WordPress 3.7.2.
 *
 * @ignore
 * @since 3.7.2
 *
 * @global int $wp_current_db_version The old (current) database version.
 */
function upgrade_372()
{
    global $wp_current_db_version;
    if ($wp_current_db_version < 26148) {
        wp_clear_scheduled_hook('wp_maybe_auto_update');
    }
}

WordPress Version: 5.3

/**
 * Execute changes made in WordPress 3.7.2.
 *
 * @ignore
 * @since 3.7.2
 * @since 3.8.0
 *
 * @global int $wp_current_db_version The old (current) database version.
 */
function upgrade_372()
{
    global $wp_current_db_version;
    if ($wp_current_db_version < 26148) {
        wp_clear_scheduled_hook('wp_maybe_auto_update');
    }
}

WordPress Version: 4.5

/**
 * Execute changes made in WordPress 3.7.2.
 *
 * @ignore
 * @since 3.7.2
 * @since 3.8.0
 *
 * @global int $wp_current_db_version
 */
function upgrade_372()
{
    global $wp_current_db_version;
    if ($wp_current_db_version < 26148) {
        wp_clear_scheduled_hook('wp_maybe_auto_update');
    }
}

WordPress Version: 4.3

/**
 * Execute changes made in WordPress 3.7.2.
 *
 * @since 3.7.2
 * @since 3.8.0
 *
 * @global int $wp_current_db_version
 */
function upgrade_372()
{
    global $wp_current_db_version;
    if ($wp_current_db_version < 26148) {
        wp_clear_scheduled_hook('wp_maybe_auto_update');
    }
}

WordPress Version: .10

/**
 * Execute changes made in WordPress 3.7.2.
 *
 * @since 3.7.2
 * @since 3.8.0
 */
function upgrade_372()
{
    global $wp_current_db_version;
    if ($wp_current_db_version < 26148) {
        wp_clear_scheduled_hook('wp_maybe_auto_update');
    }
}