mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 12:05:37 +00:00
#1723 - Export to CSV has semi-colons instead of commas
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@44670 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
parent
4af3d215c5
commit
1f1414a04a
@ -109,7 +109,7 @@ class TableListField extends FormField {
|
|||||||
/**
|
/**
|
||||||
* Character to seperate exported columns in the CSV file
|
* Character to seperate exported columns in the CSV file
|
||||||
*/
|
*/
|
||||||
protected $csvSeparator = ";";
|
protected $csvSeparator = ",";
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Boolean deciding whether to include a header row in the CSV file
|
* Boolean deciding whether to include a header row in the CSV file
|
||||||
@ -751,7 +751,7 @@ JS
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set the CSV separator character. Defaults to ;
|
* Set the CSV separator character. Defaults to ,
|
||||||
*/
|
*/
|
||||||
function setCsvSeparator($csvSeparator) {
|
function setCsvSeparator($csvSeparator) {
|
||||||
$this->csvSeparator = $csvSeparator;
|
$this->csvSeparator = $csvSeparator;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user