the_password_form filter from dancoulter. fixes #7758

git-svn-id: https://develop.svn.wordpress.org/trunk@8926 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2008-09-18 06:24:45 +00:00
parent 696db5f758
commit f4fff13218
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}
/**