mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-01 09:49:27 +00:00
Monotone-Parent: 34c654fc982f81e34f7e9da9fa20842cc3a6474a
Monotone-Revision: e1dfc6f99fa7ee268a57e41fbd7edf9f87b4801a Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2008-04-25T15:15:05 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -176,8 +176,7 @@ iRANGE(2);
|
||||
um = [LDAPUserManager sharedUserManager];
|
||||
|
||||
attendees = [[component attendees] objectEnumerator];
|
||||
currentAttendee = [attendees nextObject];
|
||||
while (currentAttendee)
|
||||
while ((currentAttendee = [attendees nextObject]))
|
||||
{
|
||||
[names appendFormat: @"%@,", [currentAttendee cn]];
|
||||
[emails appendFormat: @"%@,", [currentAttendee rfc822Email]];
|
||||
@@ -186,8 +185,8 @@ iRANGE(2);
|
||||
[uids appendFormat: @"%@,", uid];
|
||||
else
|
||||
[uids appendString: @","];
|
||||
[states appendFormat: @"%@,", [[currentAttendee partStat] lowercaseString]];
|
||||
currentAttendee = [attendees nextObject];
|
||||
[states appendFormat: @"%@,",
|
||||
[[currentAttendee partStat] lowercaseString]];
|
||||
}
|
||||
|
||||
if ([names length] > 0)
|
||||
|
||||
Reference in New Issue
Block a user