Skip to content
Snippets Groups Projects
Commit 119bd488 authored by justinfreeman (Agileware)'s avatar justinfreeman (Agileware) :star2:
Browse files

CIVICRM-1695 Data Processor, default delimiter for CSV export is semi-colon,...

CIVICRM-1695 Data Processor, default delimiter for CSV export is semi-colon, not comma, as per definition: Comma Separated Values (CSV)
parent 75fee3f5
No related branches found
No related tags found
1 merge request!81Data Processor, default delimiter for CSV export is semi-colon, not comma
......@@ -46,7 +46,7 @@ class CRM_DataprocessorOutputExport_CSV extends CRM_DataprocessorOutputExport_Ab
if ($configuration && isset($configuration['delimiter']) && $configuration['delimiter']) {
$defaults['delimiter'] = $configuration['delimiter'];
} else {
$defaults['delimiter'] = ';';
$defaults['delimiter'] = ',';
}
if ($configuration && isset($configuration['enclosure']) && $configuration['enclosure']) {
$defaults['enclosure'] = $configuration['enclosure'];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment