Fix 3 minor errors in jsp files

- Add a missing `$` in dlnaSettings
- Add a missing taglib import in homePage.jsp
- Add a missing `=` in playQueue.jsp's css
master
jvoisin 5 years ago
parent 977b656bc6
commit e0ac46cf44
  1. 2
      airsonic-main/src/main/webapp/WEB-INF/jsp/dlnaSettings.jsp
  2. 2
      airsonic-main/src/main/webapp/WEB-INF/jsp/homePager.jsp
  3. 2
      airsonic-main/src/main/webapp/WEB-INF/jsp/playQueue.jsp

@ -35,7 +35,7 @@
<sec:csrfInput />
<div>
<input type="checkbox" name="dlnaEnabled" id="dlnaEnabled" {model.dlnaEnabled? "checked": ""}/>
<input type="checkbox" name="dlnaEnabled" id="dlnaEnabled" ${model.dlnaEnabled? "checked": ""}/>
<label for="dlnaEnabled"><fmt:message key="dlnasettings.enabled"/></label>
</div>
<p class="detail" style="width:60%;white-space:normal">

@ -1,5 +1,7 @@
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
<%@ taglib uri="http://www.springframework.org/tags" prefix="spring"%>
<table>
<tr>
<c:if test="${not empty model.musicFolder}">

@ -692,7 +692,7 @@
<c:if test="${model.player.web}">
<td>
<div id="player" style="width:340px; height:40px;padding-right:10px">
<audio id="audioPlayer" class="mejs__player" data-mejsoptions='{"alwaysShowControls": true, "enableKeyboard": false}' width="340px" height"40px" tabindex="-1" />
<audio id="audioPlayer" class="mejs__player" data-mejsoptions='{"alwaysShowControls": true, "enableKeyboard": false}' width="340px" height="40px" tabindex="-1" />
</div>
<div id="castPlayer" style="display: none">
<div style="float:left">

Loading…
Cancel
Save