Login locale ordering

Hi there,

i need to change the locale list on the login back to alphabetical after an upgrade has reverted it. Does anyone know the file i need to access to set the sort order?

Hi Lisa

For the locale sorting issue, please update Rhythmyx\sys_welcome\communitylogin.xsl file to include <xsl:sort select=“name” /> as shown in below block of code (below line#227 of the file)

<xsl:for-each select="$langlist">
<xsl:sort select=“name” />

<xsl:if test=“langstring=$lang”>
<xsl:attribute name=“selected”/>
</xsl:if>
<xsl:value-of select=“name”/>

</xsl:for-each>

Note that we’ve logged a defect on this RHYT-1926 and put the above change into the next Rhythmyx patch. That way the sort change doesn’t continue to get reverted when you apply future updates.

-n