| 1 | | $comment_status = wp_unslash( $_REQUEST['comment_status'] ); |
| 2 | | |
| 3 | | $delete_time = wp_unslash( $_REQUEST['pagegen_timestamp'] ); |
| 4 | | |
| 5 | | $messages[] = __( 'This comment is already approved.' ) . sprintf( |
| 6 | | ' <a href="%1$s">%2$s</a>', |
| 7 | | esc_url( admin_url( "comment.php?action=editcomment&c=$same" ) ), |
| 8 | | __( 'Edit comment' ) |
| | 1 | $comment_status = sanitize_key( wp_unslash( $_REQUEST['comment_status'] ) ); |
| | 2 | |
| | 3 | $delete_time = sanitize_text_field( wp_unslash( $_REQUEST['pagegen_timestamp'] ) ); |
| | 4 | |
| | 5 | $messages[] = sprintf( |
| | 6 | __( 'This comment is already approved. <a href="%s">Edit comment</a>' ), |