In the services where there is RSS link (filtered content service, newsletter list), the link RSS is displayed before the title tag. It should be displayed after it.
What we have :
<!-- Used in common.xsl -->
<xsl:template name="common-service-body-nonempty-content-title">
<xsl:call-template name="rss"/>
<xsl:call-template name="common-service-body-nonempty-content-title-content">
<xsl:with-param name="title" select="$service-title"/>
</xsl:call-template>
</xsl:template>
What we expect :
<!-- Used in common.xsl -->
<xsl:template name="common-service-body-nonempty-content-title">
<xsl:call-template name="common-service-body-nonempty-content-title-content">
<xsl:with-param name="title" select="$service-title"/>
</xsl:call-template>
<xsl:call-template name="rss"/>
</xsl:template>