Changeset 5543 for trunk/wp-admin/includes/comment.php
- Timestamp:
- 05/25/2007 09:41:04 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/comment.php
r5542 r5543 44 44 $comment = get_comment( $id ); 45 45 46 $comment->comment_ID = (int) $comment->comment_ID; 47 $comment->comment_post_ID = (int) $comment->comment_post_ID; 48 46 49 $comment->comment_content = format_to_edit( $comment->comment_content, user_can_richedit() ); 47 50 $comment->comment_content = apply_filters( 'comment_edit_pre', $comment->comment_content); 51 $comment->comment_content = apply_filters( 'comment_text', $comment->comment_content ); 48 52 49 53 $comment->comment_author = format_to_edit( $comment->comment_author ); 50 54 $comment->comment_author_email = format_to_edit( $comment->comment_author_email ); 55 $comment->comment_author_url = clean_url($comment->comment_author_url); 51 56 $comment->comment_author_url = format_to_edit( $comment->comment_author_url ); 52 57
Note: See TracChangeset
for help on using the changeset viewer.