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

No use for realpath anymore.

parent 5ae1fd73
No related branches found
No related tags found
No related merge requests found
......@@ -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'];
......
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