View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0001780 | SOGo | Web Calendar | public | 2012-04-26 11:07 | 2012-04-30 13:09 |
Reporter | dab1818 | Assigned To | francis | ||
Priority | normal | Severity | minor | Reproducibility | always |
Status | resolved | Resolution | fixed | ||
Product Version | 1.3.14 | ||||
Fixed in Version | 1.3.15 | ||||
Summary | 0001780: "Compose E-Mail to ... Attendees" in Event send mail only to first attendee | ||||
Description |
message send on to first attendee (email address). | ||||
Additional Information | file: generic.js patch attached | ||||
Tags | No tags attached. | ||||
2012-04-26 11:07
|
generic.js-openMailTo-JSON.patch (779 bytes)
--- UI/WebServerResources/generic.js.orig 2012-03-23 19:26:57.000000000 +0400 +++ UI/WebServerResources/generic.js 2012-04-26 14:42:48.000000000 +0400 @@ -275,11 +275,9 @@ sanitizedAddresses.push(sanitizedAddress); } - var mailto = sanitizedAddresses.join(","); - - if (mailto.length > 0) + if (sanitizedAddresses.length > 0) openMailComposeWindow(ApplicationBaseURL - + "../Mail/compose?mailto=" + encodeURIComponent(Object.toJSON([mailto])) + + "../Mail/compose?mailto=" + encodeURIComponent(Object.toJSON(sanitizedAddresses)) + ((subject.length > 0)?"?subject=" + encodeURIComponent(subject):"")); return false; /* stop following the link */ |
Thanks! Fixed in revision c64050fc650935a4d7620ed869e3e3863b178c1e. |
|
Date Modified | Username | Field | Change |
---|---|---|---|
2012-04-26 11:07 | dab1818 | New Issue | |
2012-04-26 11:07 | dab1818 | File Added: generic.js-openMailTo-JSON.patch | |
2012-04-30 13:09 | francis | Note Added: 0003829 | |
2012-04-30 13:09 | francis | Status | new => resolved |
2012-04-30 13:09 | francis | Fixed in Version | => 1.3.15 |
2012-04-30 13:09 | francis | Resolution | open => fixed |
2012-04-30 13:09 | francis | Assigned To | => francis |