From 7053fd0f30727063431db44708bc892cafd66d74 Mon Sep 17 00:00:00 2001 From: Alex Barth <alex_b@53995.no-reply.drupal.org> Date: Mon, 20 Sep 2010 15:57:25 +0000 Subject: [PATCH] No use for realpath anymore. --- plugins/FeedsCSVParser.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/FeedsCSVParser.inc b/plugins/FeedsCSVParser.inc index 691e1f15..6e60ae1a 100644 --- a/plugins/FeedsCSVParser.inc +++ b/plugins/FeedsCSVParser.inc @@ -13,7 +13,7 @@ class FeedsCSVParser extends FeedsParser { // Load and configure parser. feeds_include_library('ParserCSV.inc', 'ParserCSV'); - $iterator = new ParserCSVIterator(realpath($batch->getFilePath())); + $iterator = new ParserCSVIterator($batch->getFilePath()); $source_config = $source->getConfigFor($this); $parser = new ParserCSV(); $delimiter = $source_config['delimiter'] == 'TAB' ? "\t" : $source_config['delimiter']; -- GitLab