From f34023a445586fa0084b6f8e44692f61987e0654 Mon Sep 17 00:00:00 2001 From: ryan Date: Fri, 17 Feb 2006 01:31:53 +0000 Subject: [PATCH] clean comment author url. fixes #2454 git-svn-id: http://svn.automattic.com/wordpress/trunk@3542 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-comments-post.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-comments-post.php b/wp-comments-post.php index e0d95a4055..e2ccba6af9 100644 --- a/wp-comments-post.php +++ b/wp-comments-post.php @@ -53,11 +53,11 @@ wp_new_comment( $commentdata ); if ( !$user_ID ) : setcookie('comment_author_' . COOKIEHASH, stripslashes($comment_author), time() + 30000000, COOKIEPATH, COOKIE_DOMAIN); setcookie('comment_author_email_' . COOKIEHASH, stripslashes($comment_author_email), time() + 30000000, COOKIEPATH, COOKIE_DOMAIN); - setcookie('comment_author_url_' . COOKIEHASH, stripslashes($comment_author_url), time() + 30000000, COOKIEPATH, COOKIE_DOMAIN); + setcookie('comment_author_url_' . COOKIEHASH, stripslashes(clean_url($comment_author_url)), time() + 30000000, COOKIEPATH, COOKIE_DOMAIN); endif; $location = ( empty( $_POST['redirect_to'] ) ) ? get_permalink( $comment_post_ID ) : $_POST['redirect_to']; wp_redirect( $location ); -?> \ No newline at end of file +?>