From 0f6dfb8b1fae2d34a06cc2d6f450b23a3cdbedfc Mon Sep 17 00:00:00 2001 From: ryan Date: Wed, 29 Aug 2007 19:04:14 +0000 Subject: [PATCH] Remove hardcoded clean_url on comment_author_url since it is handled on the pre_comment_author_url filter. Props wnorris. fixes #4120 git-svn-id: http://svn.automattic.com/wordpress/trunk@5975 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/comment.php | 1 - 1 file changed, 1 deletion(-) diff --git a/wp-includes/comment.php b/wp-includes/comment.php index 37dc38a1b4..f4411054ee 100644 --- a/wp-includes/comment.php +++ b/wp-includes/comment.php @@ -173,7 +173,6 @@ function sanitize_comment_cookies() { if ( isset($_COOKIE['comment_author_url_'.COOKIEHASH]) ) { $comment_author_url = apply_filters('pre_comment_author_url', $_COOKIE['comment_author_url_'.COOKIEHASH]); $comment_author_url = stripslashes($comment_author_url); - $comment_author_url = clean_url($comment_author_url); $_COOKIE['comment_author_url_'.COOKIEHASH] = $comment_author_url; } }