Changeset 48154 for trunk/src/wp-admin/comment.php
- Timestamp:
- 06/24/2020 12:03:33 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/comment.php
r48067 r48154 340 340 check_admin_referer( 'update-comment_' . $comment_id ); 341 341 342 edit_comment(); 342 $updated = edit_comment(); 343 if ( is_wp_error( $updated ) ) { 344 wp_die( $updated->get_error_message() ); 345 } 343 346 344 347 $location = ( empty( $_POST['referredby'] ) ? "edit-comments.php?p=$comment_post_id" : $_POST['referredby'] ) . '#comment-' . $comment_id;
Note: See TracChangeset
for help on using the changeset viewer.