@@ -139,7 +139,8 @@ discard block |
||
139 | 139 | * @return string|true string on error, true on success. |
140 | 140 | */ |
141 | 141 | private static function trigger_one_time_payment( $atts ) { |
142 | - if ( empty( $_POST['square-token'] ) || empty( $_POST['square-verification-token'] ) ) { // phpcs:ignore WordPress.Security.NonceVerification.Missing |
|
142 | + if ( empty( $_POST['square-token'] ) || empty( $_POST['square-verification-token'] ) ) { |
|
143 | +// phpcs:ignore WordPress.Security.NonceVerification.Missing |
|
143 | 144 | return __( 'Please enter a valid credit card', 'formidable' ); |
144 | 145 | } |
145 | 146 | |
@@ -199,7 +200,8 @@ discard block |
||
199 | 200 | * @return bool|string True on success, error message on failure |
200 | 201 | */ |
201 | 202 | private static function trigger_recurring_payment( $atts ) { |
202 | - if ( empty( $_POST['square-token'] ) || empty( $_POST['square-verification-token'] ) ) { // phpcs:ignore WordPress.Security.NonceVerification.Missing |
|
203 | + if ( empty( $_POST['square-token'] ) || empty( $_POST['square-verification-token'] ) ) { |
|
204 | +// phpcs:ignore WordPress.Security.NonceVerification.Missing |
|
203 | 205 | return __( 'Please enter a valid credit card', 'formidable' ); |
204 | 206 | } |
205 | 207 |