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:
parent
9b9311ae2b
commit
78f8c980da
@ -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.
|
||||||
|
Loading…
Reference in New Issue
Block a user