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_Json.php +1 -1 5.5.76 → 5.5.85 View file →
@@ -35,9 +35,9 @@
35 35
36 36 echo '{ "table": "' . esc_attr( $this->table_names ) . '"';
37 37 echo ', "info": "Generated by WP Data Access"';
38 38 echo ', "time": "' . esc_attr( gmdate( 'Y-m-d\TH:i:s\Z' ) ) . '"';
39 - if ( is_array( $this->rows ) && count( $this->rows ) > 0 ) {//phpcs:ignore - 8.1 proof
39 + if ( is_array( $this->rows ) && count( $this->rows ) > 0 ) { // phpcs:ignore -- 8.1 proof
40 40 echo ', "columns": [';
41 41 $first_col = true;
42 42 foreach ( $this->rows[0] as $column_name => $column_value ) {
43 43 if ( $first_col ) {