From 06d296d5f96ee2a580e5d0c7a799775f52d71379 Mon Sep 17 00:00:00 2001
From: Dries Buytaert <dries@buytaert.net>
Date: Sat, 22 Aug 2009 15:55:37 +0000
Subject: [PATCH] - Patch #520734 by Everett Zufelt: for accessibility,
 theme_feed_icon could use more meaningful alt text.

---
 includes/theme.inc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/includes/theme.inc b/includes/theme.inc
index d0adb23ed14a..73af67648286 100644
--- a/includes/theme.inc
+++ b/includes/theme.inc
@@ -1802,7 +1802,7 @@ function theme_more_help_link($url) {
  *   A descriptive title of the feed.
   */
 function theme_feed_icon($url, $title) {
-  if ($image = theme('image', 'misc/feed.png', t('Syndicate content'), $title)) {
+  if ($image = theme('image', 'misc/feed.png', t('Subscribe to %feed-title', array('%feed-title' => $title)))) {
     return '<a href="' . check_url($url) . '" class="feed-icon">' . $image . '</a>';
   }
 }
-- 
GitLab