Skip to content

Commit

Permalink
fixed #130 - .jsp file, form tag: use "modelAttribute" instead of dep…
Browse files Browse the repository at this point in the history
  • Loading branch information
dzc34 committed Jan 27, 2018
1 parent d8ddcfb commit d388fde
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ none
none

### Outdated dependencies
none
- [#130 - .jsp file, form tag: use "modelAttribute" instead of deprecated "commandName"](https://github.com/Asqatasun/Contrast-Finder/issues/130)

### Bug
- [#128 - Webapp: added "charset=UTF-8" HTTP header for css, js, txt, json and xml files](https://github.com/Asqatasun/Contrast-Finder/issues/128)
Expand Down
2 changes: 1 addition & 1 deletion webapp/src/main/webapp/WEB-INF/pages/form.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
<c:set var="actionUrl">
<c:url value="result.html"></c:url>
</c:set>
<form:form class="form-horizontal" name="formulaire" commandName="colorModel" method="GET" action="${actionUrl}">
<form:form class="form-horizontal" name="formulaire" modelAttribute="colorModel" method="GET" action="${actionUrl}">

<%-- Foregound --%>
<c:set var="foregroundOnError">
Expand Down

0 comments on commit d388fde

Please sign in to comment.