Changeset 2025
- Timestamp:
- 03/24/08 20:56:14
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/plagger/lib/Plagger/Plugin/CustomFeed/MixiScraper.pm
r1970 r2025 116 116 $entry->author($msg->{name}); 117 117 $entry->date( Plagger::Date->parse($format, $msg->{time}) ); 118 $entry->date->set_time_zone('Asia/Tokyo') if $entry->date; 118 119 119 120 if ($self->conf->{show_icon} && !$blocked && defined $MAP->{$type}->{icon}) { … … 172 173 173 174 $entry->date( Plagger::Date->parse($format, $item->{time}) ); 175 $entry->date->set_time_zone('Asia/Tokyo') if $entry->date; 174 176 if ($self->conf->{fetch_comment}) { 175 177 for my $comment (@{ $item->{comments} || [] }) { … … 180 182 $c->author($comment->{name}); 181 183 $c->date( Plagger::Date->parse($format, $comment->{time}) ); 184 $c->date->set_time_zone('Asia/Tokyo') if $c->date; 182 185 push @comments, $c; 183 186 }
