diff options
author | Isabelle K <hi@f2k1.de> | 2021-03-07 01:49:38 +0100 |
---|---|---|
committer | Isabelle K <hi@f2k1.de> | 2021-03-07 01:49:38 +0100 |
commit | 7b9c1e733b607af2e089421d929a3cbf3f1deaab (patch) | |
tree | 67405b461c673d542df7d5315a9a53c8f9f09520 | |
parent | dec620c7bc842add097201f0c904a39cc5956c9c (diff) |
webmusic.xslt: add trailing slash to directories
-rw-r--r-- | webmusic.xslt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/webmusic.xslt b/webmusic.xslt index 15e3fd7..d45249a 100644 --- a/webmusic.xslt +++ b/webmusic.xslt @@ -82,7 +82,7 @@ </xsl:attribute> <xsl:attribute name="href"> <xsl:call-template name="url-encode"> - <xsl:with-param name="str" select="concat($path, current())" /> + <xsl:with-param name="str" select="concat($path, current(), '/')" /> </xsl:call-template> </xsl:attribute> <xsl:value-of select="." /> |