From fe445c22f1b4356f76964d0531062189d4f2452b Mon Sep 17 00:00:00 2001 From: Francis Lachapelle Date: Tue, 8 Jul 2008 11:13:20 +0000 Subject: [PATCH] Monotone-Parent: dda4e6a3f592d528b84dd6d0a778f5e9cea2bfa5 Monotone-Revision: 5a9d1a37ff5b7e57b7c92db2cc2c56d3af92d80c Monotone-Author: flachapelle@inverse.ca Monotone-Date: 2008-07-08T11:13:20 Monotone-Branch: ca.inverse.sogo --- UI/WebServerResources/UIxAppointmentEditor.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/UI/WebServerResources/UIxAppointmentEditor.js b/UI/WebServerResources/UIxAppointmentEditor.js index a2f45ccfe..55c1ce3e1 100644 --- a/UI/WebServerResources/UIxAppointmentEditor.js +++ b/UI/WebServerResources/UIxAppointmentEditor.js @@ -151,8 +151,9 @@ function onComposeToAllAttendees() var attendees = $$("DIV#attendeesMenu LI.attendee"); var addresses = new Array(); attendees.each(function(item) { - addresses.push(item.readAttribute("email")); - }); + var address = item.firstChild.nodeValue.trim() + " <" + item.readAttribute("email") + ">"; + addresses.push(address); + }); if (window.opener) window.opener.openMailTo(addresses.join(",")); }