Changeset 34497
- Timestamp:
- 09/24/2015 02:34:15 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-upgrader.php
r33685 r34497 1807 1807 1808 1808 /** 1809 * Asynchronously upgrade language packs after other upgrades have been made.1809 * Asynchronously upgrades language packs after other upgrades have been made. 1810 1810 * 1811 1811 * Hooked to the {@see 'upgrader_process_complete'} action by default. … … 1813 1813 * @since 3.7.0 1814 1814 * @access public 1815 *1816 1815 * @static 1817 1816 * 1818 * @param false|WP_Upgrader $upgrader 1817 * @param false|WP_Upgrader $upgrader Optional. WP_Upgrader instance or false. If `$upgrader` is 1818 * a Language_Pack_Upgrader instance, the method will bail to 1819 * avoid recursion. Otherwise unused. Default false. 1819 1820 */ 1820 1821 public static function async_upgrade( $upgrader = false ) { … … 1830 1831 } 1831 1832 1832 // Avoid messing with VCS installs, at least for now. 1833 // Noted: this is not the ideal way to accomplish this. 1833 /* 1834 * Avoid messing with VCS installs, at least for now. 1835 * Noted: this is not the ideal way to accomplish this. 1836 */ 1834 1837 $check_vcs = new WP_Automatic_Updater; 1835 1838 if ( $check_vcs->is_vcs_checkout( WP_CONTENT_DIR ) ) {
Note: See TracChangeset
for help on using the changeset viewer.