Changeset 11109 for trunk/wp-includes/comment.php
- Timestamp:
- 04/28/2009 05:58:45 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/comment.php
r10810 r11109 370 370 $comment_author = apply_filters('pre_comment_author_name', $_COOKIE['comment_author_'.COOKIEHASH]); 371 371 $comment_author = stripslashes($comment_author); 372 $comment_author = attr ibute_escape($comment_author);372 $comment_author = attr($comment_author); 373 373 $_COOKIE['comment_author_'.COOKIEHASH] = $comment_author; 374 374 } … … 377 377 $comment_author_email = apply_filters('pre_comment_author_email', $_COOKIE['comment_author_email_'.COOKIEHASH]); 378 378 $comment_author_email = stripslashes($comment_author_email); 379 $comment_author_email = attr ibute_escape($comment_author_email);379 $comment_author_email = attr($comment_author_email); 380 380 $_COOKIE['comment_author_email_'.COOKIEHASH] = $comment_author_email; 381 381 }
Note: See TracChangeset
for help on using the changeset viewer.