+2005-02-02 Helge Hess <helge.hess@opengroupware.org>
+
+ * WOHttpAdaptor/WOHttpAdaptor.m: allow WOPort bind addresses with IPs,
+ eg "192.168.0.1:7900", this was previously parsed incorrectly as
+ just the port, eg "7900" (which still works) (v4.5.110)
+
2005-01-08 Helge Hess <helge.hess@opengroupware.org>
* Associations/WOKeyPathAssociation.m: fixed a type coercion issue on
# version file
-SUBMINOR_VERSION:=109
+SUBMINOR_VERSION:=110
# v4.5.91 requires libNGExtensions v4.5.134
# v4.5.84 requires libNGExtensions v4.5.127
self->address = [self autoBindAddress];
if ((self->address == nil) && ((cstr = [WOPort cString]) != NULL)) {
- if (isdigit(*cstr)) {
+ if (isdigit(*cstr) && index(cstr, ':') == NULL) {
NSNumber *p;
p = [(WOCoreApplication *)[_application class] port];