This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository wao. See http://git.codelutin.com/wao.git commit 1d8b3330e71f09ff3e1848939e8fcadfb436794b Author: Brendan Le Ny <bleny@codelutin.com> Date: Mon Mar 2 10:37:01 2015 +0100 Correction d'une expression OGNL (termine #6732) --- wao-web/src/main/webapp/WEB-INF/content/boat-details.jsp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wao-web/src/main/webapp/WEB-INF/content/boat-details.jsp b/wao-web/src/main/webapp/WEB-INF/content/boat-details.jsp index 8e2c53e..e1524b7 100644 --- a/wao-web/src/main/webapp/WEB-INF/content/boat-details.jsp +++ b/wao-web/src/main/webapp/WEB-INF/content/boat-details.jsp @@ -205,7 +205,7 @@ <div class="control-group"> <div class="controls"> <s:iterator value="boatDetails.elligibleForSampleRows" status="status"> - <s:if test="authenticatedWaoUser.authorizedToCreateContact(organisation.topiaId)"> + <s:if test="authenticatedWaoUser.isAuthorizedToCreateContact(organisation.topiaId)"> <div class="elligible-sample-row"> <s:set name="radioId">radio-<s:property value="#status.index"/></s:set> <input type="radio" name="sampleRowId" id="<s:property value="#radioId"/>" value="<s:property value="topiaId"/>"/> @@ -262,7 +262,7 @@ </s:if> <s:else> <s:if test="boatDetails.newContactCreatable"> - <s:if test="boatDetails.newContactCreatable && authenticatedWaoUser.authorizedToCreateContact(startBoatSelectionForSampleRow.organisation.topiaId)"> + <s:if test="boatDetails.newContactCreatable && authenticatedWaoUser.isAuthorizedToCreateContact(startBoatSelectionForSampleRow.organisation.topiaId)"> <s:url action="create-contact" id="createContactUrl"> <s:param name="boatId" value="boatDetails.boatInfos.boat.topiaId"/> <s:param name="sampleRowId" value="startBoatSelectionForSampleRow.topiaId"/> -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.