Changeset 55824
- Timestamp:
- 05/18/2023 12:34:22 PM (2 years ago)
- Location:
- trunk/src/wp-admin
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-plugin-upgrader.php
r55720 r55824 239 239 ); 240 240 241 // Cleanup our hooks, in case something else does a upgrade on this connection.241 // Cleanup our hooks, in case something else does an upgrade on this connection. 242 242 remove_action( 'upgrader_process_complete', 'wp_clean_plugins_cache', 9 ); 243 243 remove_filter( 'upgrader_pre_install', array( $this, 'deactivate_plugin_before_upgrade' ) ); … … 387 387 $this->skin->footer(); 388 388 389 // Cleanup our hooks, in case something else does a upgrade on this connection.389 // Cleanup our hooks, in case something else does an upgrade on this connection. 390 390 remove_filter( 'upgrader_clear_destination', array( $this, 'delete_old_plugin' ) ); 391 391 -
trunk/src/wp-admin/includes/class-theme-upgrader.php
r55720 r55824 488 488 $this->skin->footer(); 489 489 490 // Cleanup our hooks, in case something else does a upgrade on this connection.490 // Cleanup our hooks, in case something else does an upgrade on this connection. 491 491 remove_filter( 'upgrader_pre_install', array( $this, 'current_before' ) ); 492 492 remove_filter( 'upgrader_post_install', array( $this, 'current_after' ) ); -
trunk/src/wp-admin/includes/class-wp-filesystem-base.php
r55714 r55824 399 399 400 400 /** 401 * Converts *nix-style file permissions to a octal number.401 * Converts *nix-style file permissions to an octal number. 402 402 * 403 403 * Converts '-rw-r--r--' to 0644 -
trunk/src/wp-admin/includes/update-core.php
r55703 r55824 1497 1497 $_result = copy_dir( $from . $distro . 'wp-content/' . $file, $dest . $filename ); 1498 1498 1499 // If a error occurs partway through this final step, keep the error flowing through, but keep process going. 1499 /* 1500 * If an error occurs partway through this final step, 1501 * keep the error flowing through, but keep the process going. 1502 */ 1500 1503 if ( is_wp_error( $_result ) ) { 1501 1504 if ( ! is_wp_error( $result ) ) { -
trunk/src/wp-admin/update-core.php
r55625 r55824 1020 1020 1021 1021 if ( 'upgrade-core' === $action ) { 1022 // Force a update check when requested.1022 // Force an update check when requested. 1023 1023 $force_check = ! empty( $_GET['force-check'] ); 1024 1024 wp_version_check( array(), $force_check );
Note: See TracChangeset
for help on using the changeset viewer.