Index: includes/theme.inc
===================================================================
RCS file: /cvs/drupal/drupal/includes/theme.inc,v
retrieving revision 1.509
diff -u -r1.509 theme.inc
--- includes/theme.inc	22 Aug 2009 15:55:37 -0000	1.509
+++ includes/theme.inc	22 Aug 2009 16:24:31 -0000
@@ -1800,9 +1800,10 @@
  *   The url of the feed.
  * @param $title
  *   A descriptive title of the feed.
-  */
+ */
 function theme_feed_icon($url, $title) {
-  if ($image = theme('image', 'misc/feed.png', t('Subscribe to %feed-title', array('%feed-title' => $title)))) {
+  $text = t('Subscribe to %feed-title', array('%feed-title' => $title));
+  if ($image = theme('image', 'misc/feed.png', $text, $text)) {
     return '<a href="' . check_url($url) . '" class="feed-icon">' . $image . '</a>';
   }
 }
