add contextPath

This commit is contained in:
Shinsuke Sugaya 2015-08-27 23:01:41 +09:00
parent 4952adc28e
commit e7eb7e72c8
2 changed files with 2 additions and 2 deletions

View file

@ -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}">

View file

@ -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}"/>