added P tags around the 'enter your password' message

git-svn-id: http://svn.automattic.com/wordpress/trunk@391 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
alex_t_king 2003-09-27 05:45:59 +00:00
parent 8939892461
commit 1ed90dee8f
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@
if (!empty($post->post_password)) { // if there's a password
if ($HTTP_COOKIE_VARS['wp-postpass'] != $post->post_password) { // and it doesn't match the cookie
echo("Enter your password to view comments");
echo("<p>Enter your password to view comments.<p>");
return;
}
}