- Timestamp:
- 10/25/08 00:11:24 (23 months ago)
- Location:
- trunk
- Files:
-
- 2 modified
-
Changes (modified) (1 diff)
-
lib/OpenGuides/Utils.pm (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Changes
r1245 r1247 21 21 Don't add delete links unless the user requests (#159) 22 22 Fix clean target to remove everything it should (#242) 23 Warn about errors fetching remote RSS feeds, but carry on 24 generating the page content (#228) 23 25 24 26 0.63 16 August 2008 -
trunk/lib/OpenGuides/Utils.pm
r1240 r1247 212 212 } 213 213 214 my $rss = Wiki::Toolkit::Plugin::RSS::Reader->new(url => $url); 214 # We can't do much about remote errors fetching 215 # at this stage 216 my $rss = eval { Wiki::Toolkit::Plugin::RSS::Reader->new(url => $url); }; 217 if ( $@ ) { 218 warn $@; 219 return ''; 220 } 215 221 my @items = $rss->retrieve; 216 222
