1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2024-06-23 06:25:24 +00:00

Fix: Do not display dummy <authenticator> tag.

This commit is contained in:
Philipp Schafft 2014-12-31 10:19:27 +00:00
parent f90fb78ba0
commit e445065ab1

View File

@ -101,7 +101,7 @@
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
<xsl:for-each select="*[not(self::metadata) and not(self::authentication)]"> <xsl:for-each select="*[not(self::metadata) and not(self::authentication) and not(self::authenticator)]">
<tr> <tr>
<td><xsl:value-of select="name()" /></td> <td><xsl:value-of select="name()" /></td>
<td><xsl:value-of select="text()" /></td> <td><xsl:value-of select="text()" /></td>
@ -141,4 +141,4 @@
</body> </body>
</html> </html>
</xsl:template> </xsl:template>
</xsl:stylesheet> </xsl:stylesheet>