Changeset 48446
- Timestamp:
- 07/12/2020 01:17:51 AM (3 years ago)
- Location:
- trunk/src/wp-admin/includes
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/ajax-actions.php
r48445 r48446 4467 4467 * Plugin is already at the latest version. 4468 4468 * 4469 * This may also be the return value If the `update_plugins` site transient is empty,4469 * This may also be the return value if the `update_plugins` site transient is empty, 4470 4470 * e.g. when you update two plugins in quick succession before the transient repopulates. 4471 4471 * -
trunk/src/wp-admin/includes/class-plugin-installer-skin.php
r48417 r48446 233 233 234 234 /** 235 * Filters the compare table output for overwrit ea plugin package on upload.235 * Filters the compare table output for overwriting a plugin package on upload. 236 236 * 237 237 * @since 5.5.0 238 238 * 239 * @param string $table The output table with Name, Version, Author, RequiresWPand RequiresPHP info.240 * @param array $current_plugin_dataArray with current plugin data.241 * @param array $new_plugin_dataArray with uploaded plugin data.239 * @param string $table The output table with Name, Version, Author, RequiresWP, and RequiresPHP info. 240 * @param array $current_plugin_data Array with current plugin data. 241 * @param array $new_plugin_data Array with uploaded plugin data. 242 242 */ 243 243 echo apply_filters( 'install_plugin_ovewrite_comparison', $table, $current_plugin_data, $this->upgrader->new_plugin_data ); -
trunk/src/wp-admin/includes/class-plugin-upgrader.php
r48445 r48446 248 248 wp_clean_plugins_cache( $parsed_args['clear_update_cache'] ); 249 249 250 // Ensure any future auto-update failures trigger a failure email by removing the last251 // failure notification from the list when plugins update successfully.250 // Ensure any future auto-update failures trigger a failure email by removing 251 // the last failure notification from the list when plugins update successfully. 252 252 $past_failure_emails = get_option( 'auto_plugin_theme_update_emails', array() ); 253 253 … … 380 380 remove_filter( 'upgrader_clear_destination', array( $this, 'delete_old_plugin' ) ); 381 381 382 // Ensure any future auto-update failures trigger a failure email by removing the last383 // failure notification from the list when plugins update successfully.382 // Ensure any future auto-update failures trigger a failure email by removing 383 // the last failure notification from the list when plugins update successfully. 384 384 $past_failure_emails = get_option( 'auto_plugin_theme_update_emails', array() ); 385 385 -
trunk/src/wp-admin/includes/class-theme-installer-skin.php
r48417 r48446 268 268 269 269 /** 270 * Filters the compare table output for overwrit ea theme package on upload.270 * Filters the compare table output for overwriting a theme package on upload. 271 271 * 272 272 * @since 5.5.0 273 273 * 274 * @param string $table The output table with Name, Version, Author, RequiresWPand RequiresPHP info.275 * @param array $current_theme_dataArray with current theme data.276 * @param array $new_theme_dataArray with uploaded theme data.274 * @param string $table The output table with Name, Version, Author, RequiresWP, and RequiresPHP info. 275 * @param array $current_theme_data Array with current theme data. 276 * @param array $new_theme_data Array with uploaded theme data. 277 277 */ 278 278 echo apply_filters( 'install_theme_overwrite_comparison', $table, $current_theme_data, $this->upgrader->new_theme_data ); -
trunk/src/wp-admin/includes/class-theme-upgrader.php
r48445 r48446 353 353 wp_clean_themes_cache( $parsed_args['clear_update_cache'] ); 354 354 355 // Ensure any future auto-update failures trigger a failure email by removing the last356 // failure notification from the list when themes update successfully.355 // Ensure any future auto-update failures trigger a failure email by removing 356 // the last failure notification from the list when themes update successfully. 357 357 $past_failure_emails = get_option( 'auto_plugin_theme_update_emails', array() ); 358 358 … … 489 489 remove_filter( 'upgrader_clear_destination', array( $this, 'delete_old_theme' ) ); 490 490 491 // Ensure any future auto-update failures trigger a failure email by removing the last492 // failure notification from the list when themes update successfully.491 // Ensure any future auto-update failures trigger a failure email by removing 492 // the last failure notification from the list when themes update successfully. 493 493 $past_failure_emails = get_option( 'auto_plugin_theme_update_emails', array() ); 494 494
Note: See TracChangeset
for help on using the changeset viewer.