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

Fix: Corrected moveclients.xsl to actually accept single client move

This commit is contained in:
Philipp Schafft 2022-03-03 08:38:41 +00:00
parent 69a622efb4
commit eb6a0e48bb

View File

@ -18,7 +18,6 @@
<xsl:when test="source"> <xsl:when test="source">
<xsl:choose> <xsl:choose>
<xsl:when test="param-id"> <xsl:when test="param-id">
<input type="hidden" name="id" value="{param-id}" />
<p>Choose the mountpoint to which you want to move the listener to:</p> <p>Choose the mountpoint to which you want to move the listener to:</p>
</xsl:when> </xsl:when>
<xsl:otherwise> <xsl:otherwise>
@ -43,6 +42,7 @@
<option value="replace-current">replace</option> <option value="replace-current">replace</option>
<option value="replace-all" selected="selected">forget and replace</option> <option value="replace-all" selected="selected">forget and replace</option>
</select> </select>
<input type="hidden" name="id" value="{param-id}" />
<input type="hidden" name="mount" value="{current_source}" /> <input type="hidden" name="mount" value="{current_source}" />
&#160; &#160;
<input type="submit" value="Move listeners" /> <input type="submit" value="Move listeners" />