X-Git-Url: https://scripts.mit.edu/gitweb/autoinstalls/wordpress.git/blobdiff_plain/03f2fa83c13c1b532284205fa7efcab9b8b2c41f..e8f61417994be715a90671aa87f1cd70d8ba132a:/wp-comments-post.php diff --git a/wp-comments-post.php b/wp-comments-post.php index 2fb148a8..4fb249ba 100644 --- a/wp-comments-post.php +++ b/wp-comments-post.php @@ -19,9 +19,9 @@ nocache_headers(); $comment = wp_handle_comment_submission( wp_unslash( $_POST ) ); if ( is_wp_error( $comment ) ) { - $data = $comment->get_error_data(); + $data = intval( $comment->get_error_data() ); if ( ! empty( $data ) ) { - wp_die( $comment->get_error_message(), $data ); + wp_die( '

' . $comment->get_error_message() . '

', __( 'Comment Submission Failure' ), array( 'response' => $data, 'back_link' => true ) ); } else { exit; }