Changeset 368

Show
Ignore:
Timestamp:
05/18/07 10:56:56 (1 year ago)
Author:
ogawa
Message:

iCalendarアイテムのmodifiedをcreatedと一緒にしてみた。Google Calendarの仕様変更対策。

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • cybozu2ical/trunk/lib/WWW/CybozuOffice6/Calendar.pm

    r364 r368  
    108108    my $self = { 
    109109        is_full_day => 0, 
    110       modified => DateTime->now, 
     110#     modified => DateTime->now, 
    111111    }; 
    112112    bless $self, $class; 
     
    152152 
    153153    $this->{created} = DateTime->from_epoch(epoch => $param{created} || 0); 
     154    $this->{modified} = DateTime->from_epoch(epoch => $param{created} || 0); 
    154155 
    155156    my $summary = ($param{abbrev} ? $param{abbrev} . ': ' : '') . $param{summary};