diff --git a/wp-admin/includes/class-wp-automatic-updater.php b/wp-admin/includes/class-wp-automatic-updater.php
index 9cf0a04ac1..fe90402096 100644
a
|
b
|
class WP_Automatic_Updater { |
887 | 887 | $successful_updates = array(); |
888 | 888 | $failed_updates = array(); |
889 | 889 | |
| 890 | $update_results['plugin'] = isset( $update_results['plugin'] ) ? $update_results['plugin'] : array(); |
| 891 | $update_results['theme'] = isset( $update_results['theme'] ) ? $update_results['theme'] : array(); |
| 892 | |
890 | 893 | /** |
891 | 894 | * Filters whether to send an email following an automatic background plugin update. |
892 | 895 | * |