diff --git a/SOPE/NGCards/ChangeLog b/SOPE/NGCards/ChangeLog index d6521f136..6ecd16f96 100644 --- a/SOPE/NGCards/ChangeLog +++ b/SOPE/NGCards/ChangeLog @@ -1,5 +1,10 @@ 2008-02-08 Wolfgang Sourdeau + * iCalRecurrenceRule.m ([iCalRecurrenceRule -wkst]): if no wkst + parameter is specified, we supply "MO" as default value. + ([iCalRecurrenceRule -weekDayFromICalRepresentation:_day]): the + second letter of sunday if "u", fixed typo. + * CardElement.m ([CardElement -setNamedValue:aValueNameto:aValue]): if the value is empty, we removed the named value. diff --git a/SOPE/NGCards/iCalRecurrenceRule.m b/SOPE/NGCards/iCalRecurrenceRule.m index 006e46365..f53f7988f 100644 --- a/SOPE/NGCards/iCalRecurrenceRule.m +++ b/SOPE/NGCards/iCalRecurrenceRule.m @@ -258,7 +258,7 @@ start = [self namedValue: @"wkst"]; if (![start length]) - start = @"SU"; + start = @"MO"; return start; }