From: znek Date: Tue, 5 Jul 2005 13:39:36 +0000 (+0000) Subject: fixed stupid extraction bug X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=91b874fedd16153fbc8b0774e7f9804bb98e603d;p=scalable-opengroupware.org fixed stupid extraction bug git-svn-id: http://svn.opengroupware.org/SOGo/trunk@662 d1b88da0-ebda-0310-925b-ed51d893ca5b --- diff --git a/SOGo/OGoContentStore/ChangeLog b/SOGo/OGoContentStore/ChangeLog index 351cb92f..82bacc20 100644 --- a/SOGo/OGoContentStore/ChangeLog +++ b/SOGo/OGoContentStore/ChangeLog @@ -1,3 +1,7 @@ +2005-07-05 Marcus Mueller + + * iCalEntityObject+OCS.m: fixed stupid extraction bug (v0.9.29) + 2005-07-05 Helge Hess * v0.9.28 diff --git a/SOGo/OGoContentStore/Version b/SOGo/OGoContentStore/Version index 7d69e771..c8df7a3e 100644 --- a/SOGo/OGoContentStore/Version +++ b/SOGo/OGoContentStore/Version @@ -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 diff --git a/SOGo/OGoContentStore/iCalEntityObject+OCS.m b/SOGo/OGoContentStore/iCalEntityObject+OCS.m index 5b851d51..6ff911c8 100644 --- a/SOGo/OGoContentStore/iCalEntityObject+OCS.m +++ b/SOGo/OGoContentStore/iCalEntityObject+OCS.m @@ -34,8 +34,8 @@ r = [prio rangeOfString:@";"]; if(r.length > 0) { prio = [prio substringToIndex:r.location]; - return [prio intValue]; } + return [prio intValue]; } return 0; }