From be5caf35906fcd6f8698771cb280ee2d0c37023c Mon Sep 17 00:00:00 2001 From: Matt Mullenweg Date: Sat, 5 Nov 2005 22:08:56 +0000 Subject: [PATCH] Redirect to permalink instead of referrer. Fixes #1673 git-svn-id: https://develop.svn.wordpress.org/trunk@2984 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-comments-post.php | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/wp-comments-post.php b/wp-comments-post.php index 6e7cdef104..e0d95a4055 100644 --- a/wp-comments-post.php +++ b/wp-comments-post.php @@ -1,6 +1,8 @@ get_row("SELECT post_status, comment_status FROM $wpdb->posts WHERE ID = '$comment_post_ID'"); @@ -46,7 +48,7 @@ if ( '' == $comment_content ) $commentdata = compact('comment_post_ID', 'comment_author', 'comment_author_email', 'comment_author_url', 'comment_content', 'comment_type', 'user_ID'); -wp_new_comment($commentdata); +wp_new_comment( $commentdata ); if ( !$user_ID ) : setcookie('comment_author_' . COOKIEHASH, stripslashes($comment_author), time() + 30000000, COOKIEPATH, COOKIE_DOMAIN); @@ -54,9 +56,8 @@ if ( !$user_ID ) : setcookie('comment_author_url_' . COOKIEHASH, stripslashes($comment_author_url), time() + 30000000, COOKIEPATH, COOKIE_DOMAIN); endif; -nocache_headers(); +$location = ( empty( $_POST['redirect_to'] ) ) ? get_permalink( $comment_post_ID ) : $_POST['redirect_to']; -$location = (empty($_POST['redirect_to'])) ? $_SERVER["HTTP_REFERER"] : $_POST['redirect_to']; +wp_redirect( $location ); -wp_redirect($location); ?> \ No newline at end of file