From 639b5f6ed85dd69c12f2273880edad75db247a2b Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Thu, 11 Oct 2018 03:53:26 +0000 Subject: [PATCH] Customize: Revert [43619] from the 4.9 branch. This change is out of the 4.9.x scope, and will be reintroduced in 5.0.x. See #44809. Built from https://develop.svn.wordpress.org/branches/4.9@43702 git-svn-id: http://core.svn.wordpress.org/branches/4.9@43531 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/class-wp-customize-manager.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/class-wp-customize-manager.php b/wp-includes/class-wp-customize-manager.php index 1c0d91fa75..5dfe5d04a6 100644 --- a/wp-includes/class-wp-customize-manager.php +++ b/wp-includes/class-wp-customize-manager.php @@ -2284,7 +2284,7 @@ final class WP_Customize_Manager { if ( ! is_wp_error( $validity ) ) { /** This filter is documented in wp-includes/class-wp-customize-setting.php */ $late_validity = apply_filters( "customize_validate_{$setting->id}", new WP_Error(), $unsanitized_value, $setting ); - if ( is_wp_error( $late_validity ) && ! empty( $late_validity->errors ) ) { + if ( ! empty( $late_validity->errors ) ) { $validity = $late_validity; } } diff --git a/wp-includes/version.php b/wp-includes/version.php index b9801cfb64..92f2a3c722 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.9.9-alpha-43701'; +$wp_version = '4.9.9-alpha-43702'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.