From c671554b03a9d6989394f5a6fb66816604a84ba1 Mon Sep 17 00:00:00 2001 From: markjaquith Date: Wed, 4 Jul 2007 16:12:37 +0000 Subject: [PATCH] Update wp-comments-post.php to WP coding conventions. props JeremyVisser. fixes #4573 git-svn-id: http://svn.automattic.com/wordpress/trunk@5777 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-comments-post.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/wp-comments-post.php b/wp-comments-post.php index de2664ea5..563745954 100644 --- a/wp-comments-post.php +++ b/wp-comments-post.php @@ -1,9 +1,9 @@ ID ) : +if ( !$user->ID ) { setcookie('comment_author_' . COOKIEHASH, $comment->comment_author, time() + 30000000, COOKIEPATH, COOKIE_DOMAIN); setcookie('comment_author_email_' . COOKIEHASH, $comment->comment_author_email, time() + 30000000, COOKIEPATH, COOKIE_DOMAIN); setcookie('comment_author_url_' . COOKIEHASH, clean_url($comment->comment_author_url), time() + 30000000, COOKIEPATH, COOKIE_DOMAIN); -endif; +} $location = ( empty($_POST['redirect_to']) ? get_permalink($comment_post_ID) : $_POST['redirect_to'] ) . '#comment-' . $comment_id; $location = apply_filters('comment_post_redirect', $location, $comment);