From 821d387c19eb5a84242d2cca4b81b3388c19eda0 Mon Sep 17 00:00:00 2001 From: Andy Mardell Date: Mon, 1 Jul 2019 08:31:10 +0100 Subject: [PATCH] Add full-stop to inline comment --- includes/class-wc-form-handler.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/class-wc-form-handler.php b/includes/class-wc-form-handler.php index 3fa1fccb5a7..43fa5c2bf31 100644 --- a/includes/class-wc-form-handler.php +++ b/includes/class-wc-form-handler.php @@ -1052,7 +1052,7 @@ class WC_Form_Handler { if ( in_array( $field, array( 'password_1', 'password_2' ) ) ) { // Don't unslash password fields - // @see https://github.com/woocommerce/woocommerce/issues/23922 + // @see https://github.com/woocommerce/woocommerce/issues/23922. $posted_fields[ $field ] = $_POST[ $field ]; // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized, WordPress.Security.ValidatedSanitizedInput.MissingUnslash } else { $posted_fields[ $field ] = wp_unslash( $_POST[ $field ] ); // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized