From 89d116363ca6a27b08b3b3e6812669ebbbd69ea0 Mon Sep 17 00:00:00 2001 From: Alexandre Cloutier Date: Wed, 16 Jul 2014 10:03:13 -0400 Subject: [PATCH] replace ampersands with commas --- SoObjects/Appointments/SOGoAppointmentObject.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SoObjects/Appointments/SOGoAppointmentObject.m b/SoObjects/Appointments/SOGoAppointmentObject.m index 239153fb4..589374bb6 100644 --- a/SoObjects/Appointments/SOGoAppointmentObject.m +++ b/SoObjects/Appointments/SOGoAppointmentObject.m @@ -472,7 +472,7 @@ value = [unavailableAttendees objectAtIndex:i]; [reason appendString:[value keysWithFormat: @"\n %{Cn}"]]; if (!(i == (count - 1))) - [reason appendString:@" &"]; + [reason appendString:@", "]; } [unavailableAttendees release]; return [NSException exceptionWithHTTPStatus:403 reason: reason];