Hello,
I fixed that issue.
I opened modules/mod_syndicate/mod_syndicate.php and changed line 19 from
$link = modSyndicateHelper::getLink($params);
to
$link = modSyndicateHelper::getLink($params)."";
and I changed /modules/mod_syndicate/helper.php from
Code:
class modSyndicateHelper
{
static function getLink(&$params)
{
$document = JFactory::getDocument();
foreach($document->_links as $link)
{
if (strpos($link, 'application/'.$params->get('format').'+xml')) {
preg_match("#href=\"(.*?)\"#s", $link, $matches);
return $matches[1];
}
}
}
}
to
class modSyndicateHelper
{
static function getLink(&$params)
{
$document = JFactory::getDocument();
foreach($document->_links as $i=>$value)
{
if ($value[attribs][type] == 'application/'.$params->get('format').'+xml')
return $i;
}
}
}
credit goes to chrisconradi from joomla forum.
Thank You