Fix for bugs #2368 and #2369

This commit is contained in:
Ludovic Marcotte
2013-07-16 11:31:08 -04:00
parent 03553980fd
commit e08ebd2390
5 changed files with 14 additions and 8 deletions
+2 -2
View File
@@ -753,7 +753,7 @@
// To
to = [[message objectForKey: @"envelope"] to];
if ([to count] > 0)
[msg addObject: [addressFormatter stringForArray: to]];
[msg addObject: [[addressFormatter stringForArray: to] stringByEscapingHTMLString]];
else
[msg addObject: @""];
@@ -778,7 +778,7 @@
// From
from = [[message objectForKey: @"envelope"] from];
if ([from count] > 0)
[msg addObject: [addressFormatter stringForArray: from]];
[msg addObject: [[addressFormatter stringForArray: from] stringByEscapingHTMLString]];
else
[msg addObject: @""];