PluginProbe
Tiered Pricing Table for WooCommerce / 8.0.2
Tiered Pricing Table for WooCommerce v8.0.2
8.0.2 7.1.7 7.1.5 7.1.4 7.1.1 6.5.0 6.4.0 6.1.0 trunk 1.0 1.1 2.0 2.0.1 2.0.2 2.1 2.1.1 2.1.2 2.2.0 2.2.1 2.2.2 2.2.3 2.3.0 2.3.1 2.3.2 2.3.3 All 91 releases
← All changes | src/Addons/RequestAQuote/CPT/QuoteRequestAdmin.php +1 -1 7.1.1 → 8.0.2 View file →
@@ -303,9 +303,9 @@
303 303 if ( get_post_type( $post_id ) !== QuoteRequestCPT::POST_TYPE ) {
304 304 return;
305 305 }
306 306
307 - if ( ! isset( $_POST['tier_pricing_table_quote_nonce'] ) || ! wp_verify_nonce( $_POST['tier_pricing_table_quote_nonce'],
307 + if ( ! isset( $_POST['tier_pricing_table_quote_nonce'] ) || ! wp_verify_nonce( sanitize_text_field( wp_unslash( $_POST['tier_pricing_table_quote_nonce'] ) ),
308 308 'tier_pricing_table_quote_save_product' ) ) {
309 309 return;
310 310 }
311 311