﻿id,summary,reporter,owner,description,type,status,priority,milestone,component,version,severity,resolution,keywords,cc
19934,Remove wpautop from password protected form,coreyw,,"If you have a custom form using the `the_password_form` filter, it tries to use `wpautop` on the code and is very annoying.

The fix seems like a simple one, just add this after line 192 in /wp-includes/post-template.php:

{{{
191: if ( post_password_required($post) ) {
192: $output = get_the_password_form();
193: remove_filter('the_content', 'wpautop');
194: return $output;
195: }
}}}",defect (bug),closed,normal,,Template,3.3.1,normal,duplicate,needs-patch,
