Fix bug 410635 - task/event to eMail conversion -> subject gets a leading 'Re:'. r=philipp p=firefox@poczta.neostrada.pl

git-svn-id: svn://10.0.0.236/trunk@246180 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
mozilla%kewis.ch 2008-02-21 12:30:22 +00:00
parent ad53c37e55
commit 1039524eb9

View File

@ -450,15 +450,7 @@ calMailButtonDNDObserver.prototype = {
}
}
// Set up the subject
var subject = calGetString("sun-calendar-event-dialog",
"emailSubjectReply",
[item.title]);
// set up message body from item description
var body = item.getProperty("DESCRIPTION");
sendMailTo(recipients, subject, body);
sendMailTo(recipients, item.title, item.getProperty("DESCRIPTION"));
}
},