? add-icon-623198-1.patch ? ttt.sql Index: follow.css =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/follow/follow.css,v retrieving revision 1.2 diff -u -p -r1.2 follow.css --- follow.css 30 Oct 2009 21:09:28 -0000 1.2 +++ follow.css 4 Nov 2009 14:22:28 -0000 @@ -60,3 +60,7 @@ a.follow-link-delicious { a.follow-link-tumblr { background-image: url(icons/small/icon-tumblr.png); } + +a.follow-link-this-site { + background-image: url(icons/small/feed.png); +} Index: follow.install =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/follow/follow.install,v retrieving revision 1.4 diff -u -p -r1.4 follow.install --- follow.install 3 Nov 2009 22:20:36 -0000 1.4 +++ follow.install 4 Nov 2009 14:22:28 -0000 @@ -13,7 +13,7 @@ function follow_install() { // Add a default link to this site's node RSS feed. db_insert('follow_links') ->fields(array( - 'name' => 'self', + 'name' => 'this-site', 'url' => 'rss.xml', 'uid' => 0, 'weight' => 0, Index: follow.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/follow/follow.module,v retrieving revision 1.7 diff -u -p -r1.7 follow.module --- follow.module 3 Nov 2009 22:20:36 -0000 1.7 +++ follow.module 4 Nov 2009 14:22:28 -0000 @@ -758,7 +758,7 @@ function follow_default_networks($uid) { ), ); if ($uid == 0) { - $networks['self'] = array( + $networks['this-site'] = array( 'title' => t('This site (RSS)'), 'domain' => '', );