Skip to content

Commit

Permalink
Migrated release error page from jstl to struts tags.
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.apache.org/repos/asf/continuum/trunk@1679075 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
batkinson committed May 12, 2015
1 parent c815bf7 commit c7bde03
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions continuum-webapp/src/main/webapp/WEB-INF/jsp/error/releaseError.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
--%>

<%@ taglib prefix="s" uri="/struts-tags" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>

<html>
<s:i18n name="localization.Continuum">
Expand All @@ -29,15 +28,16 @@
<body>
<div id="h3">
<h3><s:text name="releaseError.section.title"/></h3>
<div class="errors">
<c:if test="${!empty actionErrors}">
<div class="errormessage">
<s:iterator value="actionErrors">
<p><s:property/></p>
</s:iterator>
</div>
</c:if>
</div>
<s:if test="hasActionErrors()">
<div class="errormessage">
<s:actionerror/>
</div>
</s:if>
<s:if test="hasActionMessages()">
<div class="warningmessage">
<s:actionmessage/>
</div>
</s:if>
</div>
</body>
</s:i18n>
Expand Down

0 comments on commit c7bde03

Please sign in to comment.