Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Module/I18n/Dictionary/Loader/File/Csv.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ class Csv extends AbstractFile
*/
protected function _readFile()
{
return fgetcsv($this->_fileHandler, null, ',', '"');
return fgetcsv($this->_fileHandler, null, ',', '"', '\\');
}
}
2 changes: 1 addition & 1 deletion Module/I18n/Dictionary/Writer/Csv.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public function write(Phrase $phrase)
$fields[] = $contextValue;
}

fputcsv($this->_fileHandler, $fields);
fputcsv($this->_fileHandler, $fields, ',', '"', '\\');
}

/**
Expand Down