add contextPath
This commit is contained in:
parent
4952adc28e
commit
e7eb7e72c8
2 changed files with 2 additions and 2 deletions
|
@ -73,7 +73,7 @@
|
|||
</thead>
|
||||
<tbody>
|
||||
<c:forEach var="data" varStatus="s" items="${scheduledJobItems}">
|
||||
<tr class="${s.index % 2 == 0 ? 'row1' : 'row2'}" data-href="confirmpage/4/${f:u(data.id)}">
|
||||
<tr class="${s.index % 2 == 0 ? 'row1' : 'row2'}" data-href="${contextPath}/admin/scheduledjob/confirmpage/4/${f:u(data.id)}">
|
||||
<td>${f:h(data.name)}</td>
|
||||
<td>
|
||||
<c:if test="${data.running}">
|
||||
|
|
|
@ -4,4 +4,4 @@
|
|||
--%><%@taglib prefix="la" uri="http://lastaflute.org/latags" %><%--
|
||||
--%><%@taglib prefix="f" uri="http://lastaflute.org/functions" %><%--
|
||||
--%><%@taglib prefix="fe" uri="http://fess.codelibs.org/functions" %><%--
|
||||
--%><c:set var="contextPath" value="${request.contextPath}"/>
|
||||
--%><c:set var="contextPath" value="${pageContext.request.contextPath}"/>
|
Loading…
Add table
Reference in a new issue