Checked in attachment 165913 for bug 173562:

Need to import Outlook CSV exported data
This commit is contained in:
mostafah%oeone.com 2004-11-17 19:32:50 +00:00
Родитель 9ce67ec6b5
Коммит 2fc635f7e4
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -887,7 +887,7 @@ function parseOutlookTextField(args, textIndexName, eventFields)
{
var textString = (textIndexName in args? eventFields[args[textIndexName]] : "");
if (textString)
return textString.replace("\"\"", "\"");
return textString.replace(/""/g, "\"");
else
return textString; // null or empty
}