mirror of
https://gitlab.xiph.org/xiph/icecast-server.git
synced 2024-12-04 14:46:30 -05:00
Corrected stats.xsl to correct invalid markup
Correcting that the unordered list for authentication was wrapped in a table, which is invalid.
This commit is contained in:
parent
5a9f0426a7
commit
a546d3cc8a
@ -39,22 +39,20 @@
|
||||
</tbody>
|
||||
</table>
|
||||
<xsl:if test="authentication">
|
||||
<table>
|
||||
<ul>
|
||||
<xsl:for-each select="authentication/role">
|
||||
<li>
|
||||
Role
|
||||
<xsl:if test="@name">
|
||||
<xsl:value-of select="@name" />
|
||||
</xsl:if>
|
||||
of type <xsl:value-of select="@type" />:
|
||||
<xsl:if test="@management-url">
|
||||
<a href="{@management-url}">Manage Authentication</a>
|
||||
</xsl:if>
|
||||
</li>
|
||||
</xsl:for-each>
|
||||
</ul>
|
||||
</table>
|
||||
<ul>
|
||||
<xsl:for-each select="authentication/role">
|
||||
<li>
|
||||
Role
|
||||
<xsl:if test="@name">
|
||||
<xsl:value-of select="@name" />
|
||||
</xsl:if>
|
||||
of type <xsl:value-of select="@type" />:
|
||||
<xsl:if test="@management-url">
|
||||
<a href="{@management-url}">Manage Authentication</a>
|
||||
</xsl:if>
|
||||
</li>
|
||||
</xsl:for-each>
|
||||
</ul>
|
||||
</xsl:if>
|
||||
</div>
|
||||
<!--end global server stats-->
|
||||
|
Loading…
Reference in New Issue
Block a user