Add RSS Error handling functionality to RSS Widget displays. Props DD32. fixes #9273

git-svn-id: https://develop.svn.wordpress.org/trunk@10697 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren
2009-03-04 19:24:48 +00:00
parent 37664340f5
commit ee2a7bf311
2 changed files with 21 additions and 5 deletions
+9
View File
@@ -1549,6 +1549,15 @@ function wp_widget_rss_output( $rss, $args = array() ) {
return;
}
if ( is_wp_error($rss) ) {
if ( is_admin() || current_user_can('manage_options') ) {
echo '<p>';
printf(__('<strong>RSS Error</strong>: %s'), $rss->get_error_message());
echo '</p>';
}
return;
}
$default_args = array( 'show_author' => 0, 'show_date' => 0, 'show_summary' => 0 );
$args = wp_parse_args( $args, $default_args );
extract( $args, EXTR_SKIP );