From 13e8734147a7b2c792a9965109475ff13cbf08d2 Mon Sep 17 00:00:00 2001 From: Alex Barth <alex_b@53995.no-reply.drupal.org> Date: Thu, 5 Nov 2009 18:26:27 +0000 Subject: [PATCH] #624456 bangpound: Feeds CSV parser setDelimiter method doesn't use the argument to set the delimiter. --- libraries/ParserCSV.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/ParserCSV.inc b/libraries/ParserCSV.inc index d42393e3..0e4b4a21 100644 --- a/libraries/ParserCSV.inc +++ b/libraries/ParserCSV.inc @@ -76,7 +76,7 @@ class ParserCSV { * By default, the comma (',') is used as delimiter. */ public function setDelimiter($delimiter) { - $this->delimiter = ','; + $this->delimiter = $delimiter; } /** -- GitLab