function follow_link_tooltip_rss in Follow 6
Tooltip for the 'This site' or RSS link.
1 string reference to 'follow_link_tooltip_rss'
- follow_default_networks in ./
follow.module - Retrieves the default networks available.
File
- ./
follow.module, line 299 - Allows users to add links to their social network profiles.
Code
function follow_link_tooltip_rss($title, $variables) {
return t('Subscribe to feed: @title', array(
'@title' => $title,
));
}