(fix) Make sure we escape the organizer name over EAS (fixes #3615)

pull/206/head
Ludovic Marcotte 2016-04-05 15:21:14 -04:00
parent d697c34b6b
commit 852d3db491
1 changed files with 1 additions and 1 deletions

View File

@ -145,7 +145,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
o = [organizer cn];
if ([o length])
[s appendFormat: @"<Organizer_Name xmlns=\"Calendar:\">%@</Organizer_Name>", o];
[s appendFormat: @"<Organizer_Name xmlns=\"Calendar:\">%@</Organizer_Name>", [o activeSyncRepresentationInContext: context]];
}
}