This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository bow. See https://gitlab.nuiton.org/chorem/bow.git commit 83719de6d8e73fa298a657db4fb3f35142d74c3d Author: Benjamin POUSSIN <poussin@codelutin.com> Date: Mon Mar 20 11:38:40 2017 +0100 fixes #1325: Can't use bow with firefox on android add permanent token as hidden field in search form --- bow-ui/src/main/webapp/WEB-INF/jsp/inc/header.jsp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bow-ui/src/main/webapp/WEB-INF/jsp/inc/header.jsp b/bow-ui/src/main/webapp/WEB-INF/jsp/inc/header.jsp index 8c14bc2..be54286 100644 --- a/bow-ui/src/main/webapp/WEB-INF/jsp/inc/header.jsp +++ b/bow-ui/src/main/webapp/WEB-INF/jsp/inc/header.jsp @@ -42,6 +42,7 @@ <s:form action="home" theme="simple"> <s:textfield name="tagLine" labelSeparator="" /> <s:hidden name="order" value="%{order}"/> + <s:hidden name="token" value="%{#session.BowSession.getPermanentToken()}"/> <s:submit key="bow.rightMenu.search.tags" name="submit" /> </s:form> </div> @@ -49,11 +50,13 @@ <s:form action="home" theme="simple"> <s:textfield name="fullTextLine" labelSeparator="" /> <s:hidden name="order" value="%{order}"/> + <s:hidden name="token" value="%{#session.BowSession.getPermanentToken()}"/> <s:submit key="bow.rightMenu.fullTextSearch" name="submit" /> </s:form> </div> <div class="input"> <s:form action="openSearchResult" theme="simple"> + <s:hidden name="token" value="%{#session.BowSession.getPermanentToken()}"/> <s:textfield name="q" labelSeparator="" /> <s:submit key="bow.rightMenu.externSearchEngine" name="submit" /> </s:form> -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.