This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository bow. See http://git.chorem.org/bow.git commit f8951de2f9486278de04adfc09f92ae8ed863229 Author: Benjamin POUSSIN <poussin@codelutin.com> Date: Tue Jul 21 00:46:14 2015 +0200 fixes bug in url parameter evaluation expression --- bow-ui/src/main/webapp/WEB-INF/jsp/groupView.jsp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/bow-ui/src/main/webapp/WEB-INF/jsp/groupView.jsp b/bow-ui/src/main/webapp/WEB-INF/jsp/groupView.jsp index 74a0839..288fb98 100644 --- a/bow-ui/src/main/webapp/WEB-INF/jsp/groupView.jsp +++ b/bow-ui/src/main/webapp/WEB-INF/jsp/groupView.jsp @@ -58,15 +58,15 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. <s:url var="groupRemoveMe" action="groupRemoveMe" escapeAmp="true"> <s:param name="groupId" value="%{#group.wikittyId}" /> - <s:param name="user" value="%{#bowSession.user.wikittyId}" /> + <s:param name="user" value="%{bowSession.user.wikittyId}" /> </s:url> <a class="removeMe" href="${groupRemoveMe}">removeMe</a> - <s:url var="rss" action="atom" escapeAmp="true"> - <s:param name="token" value="%{#bowSession.user.wikittyId}" /> - <s:param name="tagLine" value="@%{#group.name}" /> + <s:url var="atom" action="atom" escapeAmp="true"> + <s:param name="token" value="%{bowSession.permanentToken}" /> + <s:param name="tagLine" value="%{'@' + #group.name}" /> </s:url> - <a class="atom" href="${rss}">atom</a> + <a class="atom" href="${atom}">atom</a> </span> </li> </s:iterator> -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.