From 52d8b0efb9d1fa57c36c8a16eb0f48829068ef05 Mon Sep 17 00:00:00 2001 From: "mattwillis%gmail.com" Date: Wed, 6 Sep 2006 01:20:37 +0000 Subject: [PATCH] bug 351290 - Add missing description field to export. r1=ssitter, r2=dmose git-svn-id: svn://10.0.0.236/trunk@209238 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/calendar/import-export/calOutlookCSVImportExport.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mozilla/calendar/import-export/calOutlookCSVImportExport.js b/mozilla/calendar/import-export/calOutlookCSVImportExport.js index 4b2f7a8dea8..7401b33718e 100644 --- a/mozilla/calendar/import-export/calOutlookCSVImportExport.js +++ b/mozilla/calendar/import-export/calOutlookCSVImportExport.js @@ -431,7 +431,6 @@ function csv_exportToStream(aStream, aCount, aItems) { headers.push(localeEn['headDescription']); headers.push(localeEn['headLocation']); headers.push(localeEn['headPrivate']); - headers.push(localeEn['headAlarmTime']); str = headers.map(function(v) {return '"'+v+'"';}).join(',')+"\n" aStream.write(str, str.length); @@ -447,6 +446,7 @@ function csv_exportToStream(aStream, aCount, aItems) { line.push(""); //XXX add alarm support line.push(""); //XXX add alarm support line.push(item.getProperty("CATEGORIES")); + line.push(item.getProperty("DESCRIPTION")); line.push(item.getProperty("LOCATION")); line.push((item.privacy=="PRIVATE") ? localeEn.valueTrue : localeEn.valueFalse);