From afbd07dd864910bdfcfb58b7dcf9143bda3da9ff Mon Sep 17 00:00:00 2001 From: Alex King Date: Sat, 27 Sep 2003 05:45:59 +0000 Subject: [PATCH] added P tags around the 'enter your password' message git-svn-id: https://develop.svn.wordpress.org/trunk@391 602fd350-edb4-49c9-b593-d223f7449a82 --- b2comments.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/b2comments.php b/b2comments.php index 9481687a64..962790a1ec 100644 --- a/b2comments.php +++ b/b2comments.php @@ -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("

Enter your password to view comments.

"); return; } }