Changeset 2699 for trunk/wp-comments-post.php
- Timestamp:
- 07/05/2005 08:47:22 PM (21 years ago)
- File:
-
- 1 edited
-
trunk/wp-comments-post.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-comments-post.php
r2623 r2699 25 25 get_currentuserinfo(); 26 26 if ( $user_ID ) : 27 $comment_author = addslashes($user_identity);28 $comment_author_email = addslashes($user_email);29 $comment_author_url = addslashes($user_url);27 $comment_author = $wpdb->escape($user_identity); 28 $comment_author_email = $wpdb->escape($user_email); 29 $comment_author_url = $wpdb->escape($user_url); 30 30 else : 31 31 if ( get_option('comment_registration') )
Note: See TracChangeset
for help on using the changeset viewer.