+2004-10-14 Marcus Mueller <znek@mulle-kybernetik.com>
+
+ * SOGoAppointment.m: fix comparison of role attribute to be compatible
+ with new versitSaxDriver. Note: this is a bug in the old
+ iCalSaxDriver, but the fix is backwards compatible and shouldn't
+ break anything (v0.9.16)
+
2004-10-08 Marcus Mueller <znek@mulle-kybernetik.com>
* AgenorUserManager.m: some safe-guarding against improper values,
p = [list objectAtIndex:i];
role = [p role];
if (_persons) {
- if (role == nil || ![role isEqualToString:@"NON-PART"])
+ if (role == nil || ![role hasPrefix:@"NON-PART"])
[filtered addObject:p];
}
else {
- if ([role isEqualToString:@"NON-PART"])
+ if ([role hasPrefix:@"NON-PART"])
[filtered addObject:p];
}
}
# $Id$
-SUBMINOR_VERSION:=15
+SUBMINOR_VERSION:=16
# v0.9.13 requires libFoundation v1.0.62