]> err.no Git - scalable-opengroupware.org/commitdiff
fixed stupid extraction bug
authorznek <znek@d1b88da0-ebda-0310-925b-ed51d893ca5b>
Tue, 5 Jul 2005 13:39:36 +0000 (13:39 +0000)
committerznek <znek@d1b88da0-ebda-0310-925b-ed51d893ca5b>
Tue, 5 Jul 2005 13:39:36 +0000 (13:39 +0000)
git-svn-id: http://svn.opengroupware.org/SOGo/trunk@662 d1b88da0-ebda-0310-925b-ed51d893ca5b

SOGo/OGoContentStore/ChangeLog
SOGo/OGoContentStore/Version
SOGo/OGoContentStore/iCalEntityObject+OCS.m

index 351cb92f32aa4686018f9c7b52e1bcdd1fac70ae..82bacc20f0f99906508718b1515e3596ac72b160 100644 (file)
@@ -1,3 +1,7 @@
+2005-07-05  Marcus Mueller  <znek@mulle-kybernetik.com>
+
+       * iCalEntityObject+OCS.m: fixed stupid extraction bug (v0.9.29)
+
 2005-07-05  Helge Hess  <helge.hess@opengroupware.org>
 
        * v0.9.28
index 7d69e771de60bd5064dd06c1963f0eba6f4502db..c8df7a3e59583972a40339ad3cd98591f0327514 100644 (file)
@@ -2,7 +2,7 @@
 
 MAJOR_VERSION=0
 MINOR_VERSION=9
-SUBMINOR_VERSION:=28
+SUBMINOR_VERSION:=29
 
 # v0.9.26 requires libGDLContentStore v4.5.26
 # v0.9.19 requires libNGiCal          v4.5.40
index 5b851d511afaa87044feb3da3b4943149171051a..6ff911c88fb6f6c1075e0aebbfaca7007f404afe 100644 (file)
@@ -34,8 +34,8 @@
     r = [prio rangeOfString:@";"];
     if(r.length > 0) {
       prio = [prio substringToIndex:r.location];
-      return [prio intValue];
     }
+    return [prio intValue];
   }
   return 0;
 }