PluginProbe
WP Data Access – App Builder for Tables, Forms, Charts, Maps & Dashboards / 5.5.85
WP Data Access – App Builder for Tables, Forms, Charts, Maps & Dashboards v5.5.85
5.5.85 5.5.84 5.5.83 5.5.82 5.5.81 5.5.80 5.5.79 5.5.77 5.5.76 5.5.75 5.5.73 5.5.72 5.5.22 5.5.23 5.5.29 5.5.3 5.5.31 5.5.32 5.5.34 5.5.35 5.5.36 5.5.37 5.5.4 5.5.40 5.5.41 All 161 releases
← All changes | WPDataAccess/Data_Tables/WPDA_Data_Tables.php +2 -0 5.5.83 → 5.5.85 View file →
@@ -730,10 +730,12 @@
730 730 // Add field filters from shortcode
731 731 $filter_field_name = '';
732 732 $filter_field_value = '';
733 733 if ( isset( $_REQUEST['filter_field_name'], $_REQUEST['filter_field_value'] ) ) {
734 + // phpcs:disable WordPress.Security.ValidatedSanitizedInput.InputNotSanitized
734 735 $filter_field_name_raw = wp_unslash( $_REQUEST['filter_field_name'] );
735 736 $filter_field_value_raw = wp_unslash( $_REQUEST['filter_field_value'] );
737 + // phpcs:enable WordPress.Security.ValidatedSanitizedInput.InputNotSanitized
736 738 if ( is_string( $filter_field_name_raw ) && is_string( $filter_field_value_raw ) ) {
737 739 $filter_field_name = sanitize_text_field( $filter_field_name_raw );
738 740 $filter_field_value = sanitize_text_field( $filter_field_value_raw );
739 741 }