Changeset 2231
- Timestamp:
- 02/06/05 19:02:10 (4 years ago)
- Files:
-
- trunk/wp-comments-post.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/wp-comments-post.php
r2221 r2231 22 22 get_currentuserinfo(); 23 23 if ( $user_ID ) : 24 $comment_author = $user_identity;25 $comment_author_email = $user_email;26 $comment_author_url = str_replace('http://', '', $user_url);24 $comment_author = addslashes($user_identity); 25 $comment_author_email = addslashes($user_email); 26 $comment_author_url = addslashes(str_replace('http://', '', $user_url)); 27 27 else : 28 28 if ( get_option('comment_registration') )
