From 8f31e395de2a097c41583023a6b323bfdef60b61 Mon Sep 17 00:00:00 2001 From: Mark Jaquith 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: https://develop.svn.wordpress.org/trunk@5777 602fd350-edb4-49c9-b593-d223f7449a82 --- 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 de2664ea56..563745954e 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);