1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2025-05-18 00:58:26 -04:00

Fix to default status.xsl: we were looking for server_url as an attribute rather

than an element incorrectly in one place, this fixes it so that the link is
correct. Patch from Dave St John.



svn path=/icecast/trunk/icecast/; revision=6457
This commit is contained in:
Michael Smith 2004-03-23 23:34:47 +00:00
parent 8269f3964f
commit cdda32a758

View File

@ -43,7 +43,7 @@
<tr><td>Stream Genre:</td><td class="streamdata"> <xsl:value-of select="genre" /></td></tr>
</xsl:if>
<xsl:if test="server_url">
<tr><td>Stream URL:</td><td class="streamdata"> <a href="{@server_url}"><xsl:value-of select="server_url" /></a></td></tr>
<tr><td>Stream URL:</td><td class="streamdata"> <a href="{server_url}"><xsl:value-of select="server_url" /></a></td></tr>
</xsl:if>
<tr><td>Current Song:</td><td class="streamdata">
<xsl:if test="artist"><xsl:value-of select="artist" /> - </xsl:if><xsl:value-of select="title" /></td></tr>