+2005-02-21 Helge Hess <helge.hess@opengroupware.org>
+
+ * FdExt.subproj/NSString+URLEscaping.m: changed to escape '+' chars
+ in URLs - this is required since the same methods are used for forms
+ which treat spaces as "+" (OGo bug #1260) (v4.5.151)
+
2005-02-17 Helge Hess <helge.hess@opengroupware.org>
* NGBundleManager.m: added some debugging code, minor code cleanups
}
static inline BOOL isUrlSafeChar(unsigned char _c) {
switch (_c) {
- case '$': case '-': case '_': case '.': case '+':
+ case '$': case '-': case '_': case '.':
+#if 0 /* see OGo bug #1260, required for forms */
+ case '+':
+#endif
case '@': // TODO: not a safe char?!
return YES;
# version
-SUBMINOR_VERSION:=150
+SUBMINOR_VERSION:=151
# v4.3.115 requires libFoundation v1.0.59
# v4.2.72 requires libEOControl v4.2.39