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
This commit is contained in:
dmose%mozilla.org
2006-02-21 08:36:19 +00:00
parent 49af614e5e
commit e8b7bbb998

View File

@@ -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]];