summaryrefslogtreecommitdiff
path: root/modules/aggregator/aggregator.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2007-05-31 12:14:04 +0000
committerDries Buytaert <dries@buytaert.net>2007-05-31 12:14:04 +0000
commit41542ef0535fa22201421baec2fcb3c1bcaa10b9 (patch)
treee00226906c534e09e49aec202fa7be89d8a07dad /modules/aggregator/aggregator.module
parent24038816f3b43273a1790fb9734b9c864649a21b (diff)
downloadbrdo-41542ef0535fa22201421baec2fcb3c1bcaa10b9.tar.gz
brdo-41542ef0535fa22201421baec2fcb3c1bcaa10b9.tar.bz2
- Patch #101268 by webernet et al: improve the usability of feed icons.
Diffstat (limited to 'modules/aggregator/aggregator.module')
-rw-r--r--modules/aggregator/aggregator.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/aggregator/aggregator.module b/modules/aggregator/aggregator.module
index 659771a6e..9fe240734 100644
--- a/modules/aggregator/aggregator.module
+++ b/modules/aggregator/aggregator.module
@@ -1325,7 +1325,7 @@ function aggregator_page_categories() {
*/
function theme_aggregator_feed($feed) {
$output = '<div class="feed-source">';
- $output .= theme('feed_icon', $feed->url) ."\n";
+ $output .= theme('feed_icon', $feed->url, t('!title feed', array('!title' => $feed->title))) ."\n";
$output .= $feed->image;
$output .= '<div class="feed-description">'. aggregator_filter_xss($feed->description) ."</div>\n";
$output .= '<div class="feed-url"><em>'. t('URL:') .'</em> '. l($feed->link, $feed->link, array('absolute' => TRUE)) ."</div>\n";