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
This commit is contained in:
Sergey Biryukov 2015-01-17 13:11:23 +00:00
parent 768624cb99
commit 823ab1efdf
2 changed files with 2 additions and 2 deletions

View File

@ -956,7 +956,7 @@ final class WP_Customize_Widgets {
call_user_func_array( 'wp_widget_control', $args ); call_user_func_array( 'wp_widget_control', $args );
$replacements = array( $replacements = array(
'<form action="" method="post">' => '<div class="form">', '<form method="post">' => '<div class="form">',
'</form>' => '</div><!-- .form -->', '</form>' => '</div><!-- .form -->',
); );

View File

@ -4,7 +4,7 @@
* *
* @global string $wp_version * @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. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.