+2004-11-23 Helge Hess <helge.hess@opengroupware.org>
+
+ * WORequestHandler.m: properly check whether logger is available
+ prior running debugWithFormat: to avoid excessive logging in OGo
+ (v4.5.99)
+
2004-11-23 Helge Hess <helge.hess@skyrix.com>
* WOComponent.m: reapplied change in v4.2.423 which got lost in some
# version file
-SUBMINOR_VERSION:=98
+SUBMINOR_VERSION:=99
# v4.5.91 requires libNGExtensions v4.5.134
# v4.5.84 requires libNGExtensions v4.5.127
if (session != nil) {
if ([session storesIDsInCookies]) {
- [self debugWithFormat:@"add cookie to session: %@", session];
+ if (logger != nil) /* Note: required! do not remove */
+ [self debugWithFormat:@"add cookie to session: %@", session];
[self addCookiesForSession:session
toResponse:response
inContext:context];