Skip to content
Snippets Groups Projects
Commit 13e87341 authored by Alex Barth's avatar Alex Barth
Browse files

#624456 bangpound: Feeds CSV parser setDelimiter method doesn't use the...

#624456 bangpound: Feeds CSV parser setDelimiter method doesn't use the argument to set the delimiter.
parent 11f251c8
No related branches found
No related tags found
No related merge requests found
...@@ -76,7 +76,7 @@ class ParserCSV { ...@@ -76,7 +76,7 @@ class ParserCSV {
* By default, the comma (',') is used as delimiter. * By default, the comma (',') is used as delimiter.
*/ */
public function setDelimiter($delimiter) { public function setDelimiter($delimiter) {
$this->delimiter = ','; $this->delimiter = $delimiter;
} }
/** /**
......
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