From 83e78d8cdd0282883d1b61d0b4d2820a9cadcebf Mon Sep 17 00:00:00 2001 From: Jonathan Desrosiers Date: Mon, 20 Jul 2020 18:26:18 +0000 Subject: [PATCH] Administration: Include the new plugin and theme versions in email notifications. This helps administrators keep track of which versions of plugins and themes are running on their site when auto-updates occur. Props audrasjb, pbiron. Fixes #50350. git-svn-id: https://develop.svn.wordpress.org/trunk@48517 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/includes/class-wp-automatic-updater.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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/src/wp-admin/includes/class-wp-automatic-updater.php +++ b/src/wp-admin/includes/class-wp-automatic-updater.php @@ -1045,7 +1045,7 @@ class WP_Automatic_Updater { $body[] = __( 'These plugins failed to update:' ); foreach ( $failed_updates['plugin'] as $item ) { - $body[] = "- {$item->name}"; + $body[] = "- {$item->name} version {$item->item->new_version}"; $past_failure_emails[ $item->item->plugin ] = $item->item->new_version; } @@ -1058,7 +1058,7 @@ class WP_Automatic_Updater { $body[] = __( 'These themes failed to update:' ); foreach ( $failed_updates['theme'] as $item ) { - $body[] = "- {$item->name}"; + $body[] = "- {$item->name} version {$item->item->new_version}"; $past_failure_emails[ $item->item->theme ] = $item->item->new_version; } @@ -1076,7 +1076,7 @@ class WP_Automatic_Updater { $body[] = __( 'These plugins are now up to date:' ); foreach ( $successful_updates['plugin'] as $item ) { - $body[] = "- {$item->name}"; + $body[] = "- {$item->name} version {$item->item->new_version}"; unset( $past_failure_emails[ $item->item->plugin ] ); } @@ -1089,7 +1089,7 @@ class WP_Automatic_Updater { $body[] = __( 'These themes are now up to date:' ); foreach ( $successful_updates['theme'] as $item ) { - $body[] = "- {$item->name}"; + $body[] = "- {$item->name} version {$item->item->new_version}"; unset( $past_failure_emails[ $item->item->theme ] ); }