Changeset 5975

Show
Ignore:
Timestamp:
08/29/07 19:04:14 (1 year 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

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • 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    }