From d8381c8973c14965b1e9a03d73d259a6d51e6640 Mon Sep 17 00:00:00 2001 From: Ryan Boren 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: https://develop.svn.wordpress.org/trunk@5975 602fd350-edb4-49c9-b593-d223f7449a82 --- 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; } }