Upgrade: Revert [34543] because of incomplete and incorrect functionality.

See #33932.
Fixes #34434.
Built from https://develop.svn.wordpress.org/trunk@35619


git-svn-id: http://core.svn.wordpress.org/trunk@35583 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Dominik Schilling 2015-11-11 22:46:26 +00:00
parent 9eb60905f2
commit 1f15d30396
2 changed files with 1 additions and 23 deletions

View File

@ -3415,24 +3415,6 @@ class WP_Automatic_Updater {
// Plugins, Themes, Translations
foreach ( array( 'plugin', 'theme', 'translation' ) as $type ) {
/**
* Filter to control whether a notification email is sent to the site admin email address for
* plugin, theme, and translation updates.
*
* By default, this only has an effect when automatic background updates are enabled and a
* development version of WordPress is in use.
*
* @since 4.4.0
*
* @param bool $notify Whether the site administrator is notified.
* @param string $type The type of update. One of 'plugin', 'theme', or 'translation'.
* @param WP_Automatic_Updater $this The WP_Automatic_Updater instance.
*/
if ( ! apply_filters( 'send_update_notification_email', true, $type, $this ) ) {
continue;
}
if ( ! isset( $this->update_results[ $type ] ) )
continue;
$success_items = wp_list_filter( $this->update_results[ $type ], array( 'result' => true ) );
@ -3467,10 +3449,6 @@ class WP_Automatic_Updater {
$body[] = '';
}
if ( empty( $body ) ) {
return;
}
$site_title = wp_specialchars_decode( get_bloginfo( 'name' ), ENT_QUOTES );
if ( $failures ) {
$body[] = trim( __(

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.4-beta3-35618';
$wp_version = '4.4-beta3-35619';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.