Make WordPress Core


Ignore:
Timestamp:
08/29/2007 07:04:14 PM (17 years ago)
Author:
ryan
Message:

Remove hardcoded clean_url on comment_author_url since it is handled on the pre_comment_author_url filter. Props wnorris. fixes #4120

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/comment.php

    r5947 r5975  
    174174        $comment_author_url = apply_filters('pre_comment_author_url', $_COOKIE['comment_author_url_'.COOKIEHASH]);
    175175        $comment_author_url = stripslashes($comment_author_url);
    176         $comment_author_url = clean_url($comment_author_url);
    177176        $_COOKIE['comment_author_url_'.COOKIEHASH] = $comment_author_url;
    178177    }
Note: See TracChangeset for help on using the changeset viewer.