Index: template.php
===================================================================
--- template.php	(revision 119)
+++ template.php	(working copy)
@@ -225,9 +225,10 @@ function artistsC01_xml_icon($url) {
  * Return code that emits an feed icon.
  * Added theme code for theme population tracking.
  */
-function artistsC01_feed_icon($url) {
+function artistsC01_feed_icon($url, $title) {
   if ($image = theme('image', 'misc/feed.png', t('Syndicate content') . ' (C01 _th3me_)', t('Syndicate content'))) {
-    return '<a href="'. check_url($url) .'" class="feed-icon">'. $image. '</a>';
+    $safetitle = htmlspecialchars($title); // Remove quotes
+    return '<a href="'. check_url($url) .'" title="'.$safetitle.'" class="feed-icon">'. $image. '</a>';
   }
 }
 
