From 1ed90dee8f7d10fc726fafa765c400add0a40817 Mon Sep 17 00:00:00 2001 From: alex_t_king Date: Sat, 27 Sep 2003 05:45:59 +0000 Subject: [PATCH] added P tags around the 'enter your password' message git-svn-id: http://svn.automattic.com/wordpress/trunk@391 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- b2comments.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/b2comments.php b/b2comments.php index 9481687a6..962790a1e 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; } }