#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:
Andrew O'Neil 2007-11-12 23:07:45 +00:00
parent 4af3d215c5
commit 1f1414a04a

View File

@ -109,7 +109,7 @@ class TableListField extends FormField {
/**
* 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
@ -751,7 +751,7 @@ JS
}
/**
* Set the CSV separator character. Defaults to ;
* Set the CSV separator character. Defaults to ,
*/
function setCsvSeparator($csvSeparator) {
$this->csvSeparator = $csvSeparator;