From 823ab1efdfab049609bf2ae32104a116fcc0c26f Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sat, 17 Jan 2015 13:11:23 +0000 Subject: [PATCH] Customizer: Fix form tag replacement in WP_Customize_Widgets::get_widget_control() after [31200]. see #30126. Built from https://develop.svn.wordpress.org/trunk@31226 git-svn-id: http://core.svn.wordpress.org/trunk@31207 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/class-wp-customize-widgets.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/class-wp-customize-widgets.php b/wp-includes/class-wp-customize-widgets.php index ad5742fabe..ba1482876e 100644 --- a/wp-includes/class-wp-customize-widgets.php +++ b/wp-includes/class-wp-customize-widgets.php @@ -956,7 +956,7 @@ final class WP_Customize_Widgets { call_user_func_array( 'wp_widget_control', $args ); $replacements = array( - '
' => '
', + '' => '
', '' => '
', ); diff --git a/wp-includes/version.php b/wp-includes/version.php index 4f6cae20e5..b22bcdef02 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.2-alpha-31225'; +$wp_version = '4.2-alpha-31226'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.