From e8b7bbb9981873434245424fb6bd309b1ff8b124 Mon Sep 17 00:00:00 2001 From: "dmose%mozilla.org" Date: Tue, 21 Feb 2006 08:36:19 +0000 Subject: [PATCH] Attendee participationStatus lost when cloning an event due to typo (bug 327840). Thanks to gekacheka@yahoo.com for the patch, r=dmose. git-svn-id: svn://10.0.0.236/trunk@190663 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/calendar/base/src/calAttendee.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mozilla/calendar/base/src/calAttendee.js b/mozilla/calendar/base/src/calAttendee.js index 9be43cf079f..5e0c0b71007 100644 --- a/mozilla/calendar/base/src/calAttendee.js +++ b/mozilla/calendar/base/src/calAttendee.js @@ -93,7 +93,7 @@ calAttendee.prototype = { clone: function() { var a = new calAttendee(); - var allProps = ["id", "commonName", "rsvp", "role", "participantStatus", + var allProps = ["id", "commonName", "rsvp", "role", "participationStatus", "userType"]; for (var i in allProps) a[allProps[i]] = this[allProps[i]];