translate icon indicating copy to clipboard operation
translate copied to clipboard

Escaping Issue when cell has a /

Open BrandonJamesBorders opened this issue 7 years ago • 0 comments

Undefined index error in upload where a translatable field has a \. fgetcsv is parsing it as one cell.

Example: "Choose what type of feed you\","Choose what type of feed you\"

Fix:

while (($row = fgetcsv($handle, 0, ',', '"', '"')) !== false) { $translations[$row[0]] = $row[1]; }

BrandonJamesBorders avatar Oct 20 '17 20:10 BrandonJamesBorders