branch develop updated (4bf3b56 -> 1d8b333)
This is an automated email from the git hooks/post-receive script. New change to branch develop in repository wao. See http://git.codelutin.com/wao.git from 4bf3b56 On remanie la génération du plan ObsVente pour ne plus lire en base l'estimé et le réalisé. Du coup, tous les programmes n'utilisent plus les champs dénormalisés de la base. new 1d8b333 Correction d'une expression OGNL (termine #6732) The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Detailed log of new commits: 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) Summary of changes: wao-web/src/main/webapp/WEB-INF/content/boat-details.jsp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.
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>.
participants (1)
-
codelutin.com scm