diff --git a/calendar/resources/content/importExport.js b/calendar/resources/content/importExport.js index 167d8eed5aef..89b2a46b135b 100644 --- a/calendar/resources/content/importExport.js +++ b/calendar/resources/content/importExport.js @@ -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 }