Changeset 789
- Timestamp:
- 01/24/2004 11:22:31 PM (22 years ago)
- File:
-
- 1 edited
-
trunk/wp-includes/template-functions.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/template-functions.php
r780 r789 1646 1646 $author = stripslashes(stripslashes($comment->comment_author)); 1647 1647 $author = apply_filters('comment_auther', $author); 1648 $author = convert_chars($author); 1648 1649 if (!empty($author)) { 1649 echo htmlspecialchars($comment->comment_author);1650 echo $comment->comment_author; 1650 1651 } 1651 1652 else { … … 1665 1666 $url = trim(stripslashes($comment->comment_author_url)); 1666 1667 $email = stripslashes($comment->comment_author_email); 1667 $author = htmlspecialchars(stripslashes($comment->comment_author)); 1668 $author = stripslashes($comment->comment_author); 1669 $author = convert_chars($author); 1670 $author = wptexturize($author); 1668 1671 if (empty($author)) { 1669 1672 $author = "Anonymous";
Note: See TracChangeset
for help on using the changeset viewer.