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/Utilities/WPDA_Export.php +2 -2 5.5.3 → 5.5.85 View file →
@@ -24,10 +24,10 @@
24 24 * @since 2.0.13
25 25 */
26 26 public static function export() {
27 27 $export_class = 'WPDataAccess\\Utilities\\WPDA_Export_Sql'; // Default export class exports to SQL.
28 - if ( isset( $_REQUEST['format_type'] ) ) {
29 - $format_type = sanitize_text_field( wp_unslash( $_REQUEST['format_type'] ) ); // input var okay.
28 + if ( isset( $_REQUEST['format_type'] ) ) { // phpcs:ignore
29 + $format_type = sanitize_text_field( wp_unslash( $_REQUEST['format_type'] ) ); // phpcs:ignore
30 30 switch ( $format_type ) {
31 31 case 'excel':
32 32 $export_class = 'WPDataAccess\\Utilities\\WPDA_Export_Excel';
33 33 break;