diff --git a/htdocs/includes/boxes/box_external_rss.php b/htdocs/includes/boxes/box_external_rss.php index 434c605aa0d..1ce89f2cdba 100644 --- a/htdocs/includes/boxes/box_external_rss.php +++ b/htdocs/includes/boxes/box_external_rss.php @@ -76,6 +76,10 @@ class box_external_rss extends ModeleBoxes { // Recupere flux RSS definie dans EXTERNAL_RSS_URLRSS_$site $rss = fetch_rss( @constant("EXTERNAL_RSS_URLRSS_".$site) ); + // INFO sur le channel + $description=$rss->channel['tagline']; + $link=$rss->channel['link']; + $title=$langs->trans("BoxTitleLastRssInfos",$max, @constant("EXTERNAL_RSS_TITLE_". $site)); if ($rss->ERROR) { @@ -85,12 +89,11 @@ class box_external_rss extends ModeleBoxes { } else { - $this->info_box_head = array('text' => $title); + $this->info_box_head = array('text' => $title, + 'sublink' => $link, 'subtext'=>'WWW', 'subpicto'=>'object_bookmark'); } - // Titre du channel - $channel=$rss->channel['tagline']; - + // INFO sur le élements for($i = 0; $i < $max ; $i++) { $item = $rss->items[$i]; diff --git a/htdocs/theme/eldy/img/help.png b/htdocs/theme/eldy/img/help.png index 82a55ce372e..c7cb9b8647e 100644 Binary files a/htdocs/theme/eldy/img/help.png and b/htdocs/theme/eldy/img/help.png differ diff --git a/htdocs/theme/eldy/img/info.png b/htdocs/theme/eldy/img/info.png index 43b02977cd8..bbf3411dceb 100644 Binary files a/htdocs/theme/eldy/img/info.png and b/htdocs/theme/eldy/img/info.png differ diff --git a/htdocs/theme/eldy/img/object_rss.png b/htdocs/theme/eldy/img/object_rss.png index 85cf0999578..8f4224b5a30 100644 Binary files a/htdocs/theme/eldy/img/object_rss.png and b/htdocs/theme/eldy/img/object_rss.png differ