Customizer: Fix form tag replacement in WP_Customize_Widgets::get_widget_control() after [31200].

see #30126.

git-svn-id: https://develop.svn.wordpress.org/trunk@31226 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2015-01-17 13:10:27 +00:00
parent 6e206c2973
commit 4c4de36c5c
1 changed files with 1 additions and 1 deletions

View File

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