-
Bug
-
Resolution: Fixed
-
Blocker
-
3.0
-
None
cms.xsl defines two "title" and "applicationTitle" templates, which are the same, and use the latter in a <script> block:
<xsl:template name="title"> <title><i18n:text i18n:catalogue="application" i18n:key="APPLICATION_PRODUCT_LABEL"/></title> </xsl:template> <xsl:template name="applicationTitle"> <title><i18n:text i18n:catalogue="application" i18n:key="APPLICATION_PRODUCT_LABEL"/></title> </xsl:template> [...] var ribbon = new org.ametys.fluent.RibbonPanel({<xsl:text/> <xsl:text/>applicationTitle: '<span class="x-fluent-tab-panel-header-title-extension"><xsl:call-template name="applicationTitle"/></span>',<xsl:text/>
This leads to a <title> tag being inserted in the <script> block. Firefox ignores the problem, but IE doesn't display the page.
The <title> tag should be deleted from the applicationTitle template.