Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
reinstate csv column array building even on empty values
  • Loading branch information
CGastrell committed Dec 10, 2025
commit 91eeaa915ccb8ca64926d7bb233b5abf70d7587c
Original file line number Diff line number Diff line change
Expand Up @@ -3702,6 +3702,8 @@ public function export_to_gdrive() {
foreach ( $fields as $single_field_name ) {
if ( isset( $export_data[ $single_field_name ][ $i ] ) ) {
$current_row[] = $export_data[ $single_field_name ][ $i ];
} else {
$current_row[] = '';
}
}

Expand Down