Skip to content

Commit

Permalink
Hidden inactive configuratons in domain/configuration definition.
Browse files Browse the repository at this point in the history
  • Loading branch information
csrster committed Nov 5, 2015
1 parent b344c91 commit 34ece73
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ the user
<td>
<select name="<%= Constants.ORDER_TEMPLATE_PARAM %>">
<% Iterator<String> templates
= TemplateDAO.getInstance().getAll();
= TemplateDAO.getInstance().getAll(true);
while (templates.hasNext()) {
String template = templates.next();
out.println("<option value=\""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ Display all the form information for this domain
<td><select name="<%=Constants.ORDER_XML_NAME_PARAM%>">
<%
Iterator<String> templates =
TemplateDAO.getInstance().getAll();
TemplateDAO.getInstance().getAll(true);
while (templates.hasNext()) {
String selected = "";
String template = templates.next();
Expand Down

0 comments on commit 34ece73

Please sign in to comment.