1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2024-09-22 04:15:54 -04:00

Fix: corrected xsl to work in omode=normal

This commit is contained in:
Philipp Schafft 2014-12-22 07:58:37 +00:00
parent d75d1d6a7a
commit bfd946520f

View File

@ -65,14 +65,14 @@
<xsl:for-each select="listener"> <xsl:for-each select="listener">
<tr> <tr>
<td> <td>
<xsl:value-of select="IP" /> <xsl:value-of select="ip" />
<xsl:if test="username"> <xsl:if test="username">
(<xsl:value-of select="username" />) (<xsl:value-of select="username" />)
</xsl:if> </xsl:if>
</td> </td>
<td><xsl:value-of select="Connected" /></td> <td><xsl:value-of select="connected" /></td>
<td><xsl:value-of select="UserAgent" /></td> <td><xsl:value-of select="useragent" /></td>
<td><a href="killclient.xsl?mount={$themount}&amp;id={ID}">Kick</a></td> <td><a href="killclient.xsl?mount={$themount}&amp;id={id}">Kick</a></td>
</tr> </tr>
</xsl:for-each> </xsl:for-each>
</tbody> </tbody>
@ -92,4 +92,4 @@
</body> </body>
</html> </html>
</xsl:template> </xsl:template>
</xsl:stylesheet> </xsl:stylesheet>