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

This commit is contained in:
Ludovic Marcotte
2016-04-05 15:21:14 -04:00
parent d697c34b6b
commit 852d3db491
+1 -1
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]];
}
}