Don't strip scheme from comment url. Bug 883.

git-svn-id: https://develop.svn.wordpress.org/trunk@2359 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2005-02-16 23:01:02 +00:00
parent 0a24ddec5a
commit cdc96a2cc5

View File

@ -23,7 +23,7 @@ get_currentuserinfo();
if ( $user_ID ) : if ( $user_ID ) :
$comment_author = addslashes($user_identity); $comment_author = addslashes($user_identity);
$comment_author_email = addslashes($user_email); $comment_author_email = addslashes($user_email);
$comment_author_url = addslashes(str_replace('http://', '', $user_url)); $comment_author_url = addslashes($user_url);
else : else :
if ( get_option('comment_registration') ) if ( get_option('comment_registration') )
die( __('Sorry, you must be logged in to post a comment.') ); die( __('Sorry, you must be logged in to post a comment.') );