Resolved bugs

Release date:Monday, February 15, 2010
C1 Version:Composite C1 1.2 SP4 (1.2.3698.30865)...
DescriptionThe same <link> and <script> elements in 2 or more XSLT functions used on the same page are duplicated in the page's HTML output.
Known work around:Use different IDs for the same <link> and <script> elements in different XSLT functions used on the same page. E.g.:
Function 1:
<script id="abc" type="text/javascript" src="/Frontend/Scripts/my.js"></script>
<link id="def" rel="stylesheet" type="text/css" href="/Frontend/Styles/my.css" />
Function 2:
<script id="ghi" type="text/javascript" src="/Frontend/Scripts/my.js"></script>
<link id="jkl" rel="stylesheet" type="text/css" href="/Frontend/Styles/my.css" />