From e3f7a8934ee30ede6a97f007ce381ebca39beac0 Mon Sep 17 00:00:00 2001 From: msti <msti@20480.no-reply.drupal.org> Date: Fri, 10 Apr 2015 17:36:29 -0700 Subject: [PATCH] Issue #1988970 by msti: FeedsCSV parser - download template should use the default delimiter --- plugins/FeedsCSVParser.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/FeedsCSVParser.inc b/plugins/FeedsCSVParser.inc index eb03be54..04d79b67 100644 --- a/plugins/FeedsCSVParser.inc +++ b/plugins/FeedsCSVParser.inc @@ -222,7 +222,7 @@ class FeedsCSVParser extends FeedsParser { $sources[] = check_plain($mapping['source']); } } - $sep = ','; + $sep = $this->config['delimiter']; $columns = array(); foreach (array_merge($uniques, $sources) as $col) { if (strpos($col, $sep) !== FALSE) { -- GitLab