helper.php has the code that generates this url with title "alternate". when RSS.
As explained, all my jEvents modules have no RSS setup.
In which screen is so I setup the variable com_rss_live_bookmarks so we never enter here ?
public static
function processLiveBookmmarks()
{
$cfg = JEVConfig::getInstance();
if ($cfg->get('com_rss_live_bookmarks'))
{
$Itemid = JRequest::getInt('Itemid', 0);
$rssmodid = $cfg->get('com_rss_modid', 0);
// do not use JRoute since this creates .rss link which normal sef can't deal with
$rssLink = 'index.php?option=' . JEV_COM_COMPONENT . '&task=modlatest.rss&format=feed&type=rss&Itemid=' . $Itemid . '&modid=' . $rssmodid;
$rssLink = JUri::root() . $rssLink;
if (method_exists(JFactory::getDocument(), "addHeadLink"

)
{
$attribs = array('type' => 'application/rss+xml', 'title' => 'RSS 2.0');
JFactory::getDocument()->addHeadLink($rssLink, 'alternate', 'rel', $attribs);
}
$rssLink = 'index.php?option=' . JEV_COM_COMPONENT . '&task=modlatest.rss&format=feed&type=atom&Itemid=' . $Itemid . '&modid=' . $rssmodid;
$rssLink = JUri::root() . $rssLink;
//$rssLink = JRoute::_($rssLink);
if (method_exists(JFactory::getDocument(), "addHeadLink"

)
{
$attribs = array('type' => 'application/atom+xml', 'title' => 'Atom 1.0');
JFactory::getDocument()->addHeadLink($rssLink, 'alternate', 'rel', $attribs);
}
}
}
br
Roland