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:
ryan 2008-09-18 06:24:45 +00:00
parent d68fd16abf
commit 40ecb1eec2
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);
}
/**