Make WordPress Core


Ignore:
Timestamp:
10/17/2013 11:20:56 PM (11 years ago)
Author:
nacin
Message:

In automatic background updates, standardize on 'update'.

New, final filter names:

  • auto_update_{$type} (plugin, theme, core, language)
  • automatic_updates_is_vcs_checkout
  • automatic_updates_disabled

New class name is WP_Automatic_Updater. Method names include update() and should_update().

see #22704.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/update.php

    r25825 r25835  
    415415    include_once ABSPATH . '/wp-admin/includes/class-wp-upgrader.php';
    416416
    417     $upgrader = new WP_Automatic_Upgrader;
     417    $upgrader = new WP_Automatic_Updater;
    418418    if ( $upgrader->is_disabled() )
    419419        return;
Note: See TracChangeset for help on using the changeset viewer.