summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-08-22 15:55:37 +0000
committerDries Buytaert <dries@buytaert.net>2009-08-22 15:55:37 +0000
commit06d296d5f96ee2a580e5d0c7a799775f52d71379 (patch)
tree7bd6a89975bdf55fbc99829f300c5e994afc676a
parentbfb487627efcfff7a091aee85a7696dde5477188 (diff)
downloadbrdo-06d296d5f96ee2a580e5d0c7a799775f52d71379.tar.gz
brdo-06d296d5f96ee2a580e5d0c7a799775f52d71379.tar.bz2
- Patch #520734 by Everett Zufelt: for accessibility, theme_feed_icon could use more meaningful alt text.
-rw-r--r--includes/theme.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/theme.inc b/includes/theme.inc
index d0adb23ed..73af67648 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>';
}
}