Skip to content

Commit

Permalink
Fix comment
Browse files Browse the repository at this point in the history
  • Loading branch information
enejb committed Jul 29, 2024
1 parent cff1767 commit 7e95abd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions projects/plugins/jetpack/modules/comments/comments.php
Original file line number Diff line number Diff line change
Expand Up @@ -667,9 +667,9 @@ public function pre_comment_on_post() {
* @return never
*/
public function retry_submit_comment_form_locally() {
// We are not doing any valiodation here since all the validation will be done again by pre_comment_on_post().
// if the comment has been posted, this is where we do our service verification checks
$comment_data = stripslashes_deep( $_POST ); // phpcs:ignore WordPress.Security.NonceVerification.Missing
// We are not doing any validation here since all the validation will be done again by pre_comment_on_post().
// phpcs:ignore WordPress.Security.NonceVerification.Missing
$comment_data = stripslashes_deep( $_POST );
?>
<!DOCTYPE html>
<html>
Expand Down

0 comments on commit 7e95abd

Please sign in to comment.