See ChangeLog.

Monotone-Parent: e9f628c74b83c2316c49865e04b473c6e202c332
Monotone-Revision: 6abb8375831082425cff443adae2a3a663f43a6d

Monotone-Author: flachapelle@inverse.ca
Monotone-Date: 2012-02-07T23:18:03
This commit is contained in:
Francis Lachapelle 2012-02-07 23:18:03 +00:00
parent b159c2c879
commit 2f887c3e37
2 changed files with 4 additions and 1 deletions

View file

@ -1,5 +1,8 @@
2012-02-10 Francis Lachapelle <flachapelle@inverse.ca>
* UI/WebServerResources/generic.js (openMailTo): recipients are
now a JSON string (see commit of February 2nd).
* UI/MailPartViewers/UIxMailPartHTMLViewer.m
(-startElement:namespace:rawName:attributes:): we should not add
end tags to void tags (ex: <br>).

View file

@ -279,7 +279,7 @@ function openMailTo(senderMailTo) {
if (mailto.length > 0)
openMailComposeWindow(ApplicationBaseURL
+ "../Mail/compose?mailto=" + encodeURIComponent(mailto)
+ "../Mail/compose?mailto=" + encodeURIComponent(Object.toJSON([mailto]))
+ ((subject.length > 0)?"?subject=" + encodeURIComponent(subject):""));
return false; /* stop following the link */