Changeset 1577
- Timestamp:
- 08/23/06 21:23:08
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/plagger/lib/Plagger/Plugin/Aggregator/Simple.pm
r1493 r1577 98 98 99 99 if ($remote->format =~ /^RSS/) { 100 $feed->image( $remote->{rss}->image)100 $feed->image( \%{$remote->{rss}->image} ) 101 101 if $remote->{rss}->image; 102 102 } elsif ($remote->format eq 'Atom') { … … 160 160 } 161 161 162 # entry image support 163 if ($remote->format =~ /^RSS / and my $img = $e->{entry}->{image}) { 164 $entry->icon(\%$img); 165 } 166 162 167 # TODO: move MediaRSS, Hatena, iTunes and those specific parser to be subclassed 163 168
