Make WordPress Core

Ticket #50350: 50350.2.diff

File 50350.2.diff, 1.6 KB (added by audrasjb, 4 years ago)

Upgrade/install: Add version information to auto-updates email notifications

  • src/wp-admin/includes/class-wp-automatic-updater.php

    diff --git a/src/wp-admin/includes/class-wp-automatic-updater.php b/src/wp-admin/includes/class-wp-automatic-updater.php
    index 01e4dea1aa..ba38ec95b3 100644
    a b class WP_Automatic_Updater { 
    10451045                                $body[] = __( 'These plugins failed to update:' );
    10461046
    10471047                                foreach ( $failed_updates['plugin'] as $item ) {
    1048                                         $body[] = "- {$item->name}";
     1048                                        $body[] = "- {$item->name} version {$item->item->new_version}";
    10491049
    10501050                                        $past_failure_emails[ $item->item->plugin ] = $item->item->new_version;
    10511051                                }
    class WP_Automatic_Updater { 
    10581058                                $body[] = __( 'These themes failed to update:' );
    10591059
    10601060                                foreach ( $failed_updates['theme'] as $item ) {
    1061                                         $body[] = "- {$item->name}";
     1061                                        $body[] = "- {$item->name} version {$item->item->new_version}";
    10621062
    10631063                                        $past_failure_emails[ $item->item->theme ] = $item->item->new_version;
    10641064                                }
    class WP_Automatic_Updater { 
    10761076                                $body[] = __( 'These plugins are now up to date:' );
    10771077
    10781078                                foreach ( $successful_updates['plugin'] as $item ) {
    1079                                         $body[] = "- {$item->name}";
     1079                                        $body[] = "- {$item->name} version {$item->item->new_version}";
    10801080
    10811081                                        unset( $past_failure_emails[ $item->item->plugin ] );
    10821082                                }
    class WP_Automatic_Updater { 
    10891089                                $body[] = __( 'These themes are now up to date:' );
    10901090
    10911091                                foreach ( $successful_updates['theme'] as $item ) {
    1092                                         $body[] = "- {$item->name}";
     1092                                        $body[] = "- {$item->name} version {$item->item->new_version}";
    10931093
    10941094                                        unset( $past_failure_emails[ $item->item->theme ] );
    10951095                                }