Use correct variable in WP_Automatic_Updater::send_email().

props pento.
see #25757 for trunk.


git-svn-id: https://develop.svn.wordpress.org/trunk@25977 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin 2013-10-29 13:45:17 +00:00
parent 9b9311ae2b
commit 78f8c980da

View File

@ -2135,7 +2135,7 @@ class WP_Automatic_Updater {
// If the update transient is empty, use the update we just performed // If the update transient is empty, use the update we just performed
if ( ! $next_user_core_update ) if ( ! $next_user_core_update )
$next_user_core_update = $core_update; $next_user_core_update = $core_update;
$newer_version_available = ( 'upgrade' == $next_user_core_update->response && version_compare( $next_user_core_update->version, $core_update, '>' ) ); $newer_version_available = ( 'upgrade' == $next_user_core_update->response && version_compare( $next_user_core_update->version, $core_update->version, '>' ) );
/** /**
* Filter whether to send an email following an automatic background core update. * Filter whether to send an email following an automatic background core update.