translate
translate copied to clipboard
Escaping Issue when cell has a /
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]; }