Use pipe (|) instead of comma in media file list

This commit is contained in:
David Bartley 2007-11-21 02:05:29 -05:00
parent 3cb7d75613
commit e80fc509d9
1 changed files with 2 additions and 1 deletions

View File

@ -8,7 +8,8 @@
<xsl:template match="mediafile">
<xsl:param name="ext" />
<xsl:param name="mirror" />
<a href="{$mirror}{@file}{$ext}"><xsl:value-of select="@type" /></a>,
<a href="{$mirror}{@file}{$ext}"><xsl:value-of select="@type" /></a>
<xsl:if test="position() != last()">, </xsl:if>
</xsl:template>
<xsl:template match="flvfile">