Fix validation issue in get_the_password_form() caused by wpautop(). fixes #21018 for 3.4.

git-svn-id: http://core.svn.wordpress.org/branches/3.4@21125 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
nacin 2012-06-26 03:21:37 +00:00
parent 1233c52237
commit 60191c0968
1 changed files with 1 additions and 1 deletions

View File

@ -1220,7 +1220,7 @@ function get_the_password_form() {
$output = '<form action="' . esc_url( site_url( 'wp-login.php?action=postpass', 'login_post' ) ) . '" method="post">
<p>' . __("This post is password protected. To view it please enter your password below:") . '</p>
<p><label for="' . $label . '">' . __("Password:") . ' <input name="post_password" id="' . $label . '" type="password" size="20" /></label> <input type="submit" name="Submit" value="' . esc_attr__("Submit") . '" /></p>
</form>
</form>
';
return apply_filters('the_password_form', $output);
}