From 11def634f628012b28dc941817b0c14c48f4ba9c Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sat, 10 Oct 2015 23:25:24 +0000 Subject: [PATCH] Customizer: `WP_Customize_Cropped_Image_Control` should extend `WP_Customize_Image_Control`, since Site Icon can only an image. Props paulwilde. Fixes #34250. Built from https://develop.svn.wordpress.org/trunk@35018 git-svn-id: http://core.svn.wordpress.org/trunk@34983 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/class-wp-customize-control.php | 4 ++-- wp-includes/version.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-includes/class-wp-customize-control.php b/wp-includes/class-wp-customize-control.php index 89135e1c46..5a42d368c8 100644 --- a/wp-includes/class-wp-customize-control.php +++ b/wp-includes/class-wp-customize-control.php @@ -1005,9 +1005,9 @@ class WP_Customize_Background_Image_Control extends WP_Customize_Image_Control { * * @since 4.3.0 * - * @see WP_Customize_Media_Control + * @see WP_Customize_Image_Control */ -class WP_Customize_Cropped_Image_Control extends WP_Customize_Media_Control { +class WP_Customize_Cropped_Image_Control extends WP_Customize_Image_Control { /** * Control type. diff --git a/wp-includes/version.php b/wp-includes/version.php index 753f1c3468..799fb6bc2a 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-alpha-35017'; +$wp_version = '4.4-alpha-35018'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.