2004-10-08 Helge Hess <helge.hess@opengroupware.org>
+ * WebDAV/SoObjectDataSource.m: ensure that the child key used for
+ lookup is a string (eg if toOneRelationshipKeys returns NSNumber's
+ as values) (v4.3.57)
+
* WebDAV/SoObjectDataSource.m: minor optimization to URL generation
(v4.3.56)
# version file
-SUBMINOR_VERSION:=56
+SUBMINOR_VERSION:=57
# v4.3.42 requires libNGExtensions v4.3.116
# v4.3.40 requires libNGExtensions v4.3.115
queriedAttrNames = [_fs selectedWebDAVPropertyNames];
- while ((childKey = [childKeys nextObject])) {
+ while ((childKey = [[childKeys nextObject] stringValue]) != nil) {
NSDictionary *rec;
NSException *e;
NSString *childHref;