Changeset 5550 for branches/2.0/wp-admin/admin-functions.php
- Timestamp:
- 05/25/2007 10:33:48 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.0/wp-admin/admin-functions.php
r5406 r5550 320 320 $comment = get_comment($id); 321 321 322 $comment->comment_ID = (int) $comment->comment_ID; 323 $comment->comment_post_ID = (int) $comment->comment_post_ID; 324 322 325 $comment->comment_content = format_to_edit($comment->comment_content, $richedit); 323 326 $comment->comment_content = apply_filters('comment_edit_pre', $comment->comment_content); 327 $comment->comment_content = apply_filters( 'comment_text', $comment->comment_content ); 324 328 325 329 $comment->comment_author = format_to_edit($comment->comment_author); 326 330 $comment->comment_author_email = format_to_edit($comment->comment_author_email); 331 $comment->comment_author_url = clean_url($comment->comment_author_url); 327 332 $comment->comment_author_url = format_to_edit($comment->comment_author_url); 328 333 … … 863 868 $entry['meta_key'] = attribute_escape( $entry['meta_key']); 864 869 $entry['meta_value'] = attribute_escape( $entry['meta_value']); 870 $entry['meta_id'] = (int) $entry['meta_id']; 865 871 echo " 866 872 <tr class='$style'>
Note: See TracChangeset
for help on using the changeset viewer.