the_password_form filter from dancoulter. fixes #7758
git-svn-id: http://svn.automattic.com/wordpress/trunk@8926 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
d68fd16abf
commit
40ecb1eec2
|
@ -923,7 +923,7 @@ function get_the_password_form() {
|
|||
<p><label for="' . $label . '">' . __("Password:") . ' <input name="post_password" id="' . $label . '" type="password" size="20" /></label> <input type="submit" name="Submit" value="' . __("Submit") . '" /></p>
|
||||
</form>
|
||||
';
|
||||
return $output;
|
||||
return apply_filters('the_password_form', $output);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue