We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 46774e1 commit 6bac567Copy full SHA for 6bac567
src/java/fr/paris/lutece/plugins/forms/web/FormXPage.java
@@ -882,6 +882,8 @@ public synchronized XPage doSaveStep( HttpServletRequest request ) throws SiteMe
882
// why are we here as we didn't try to save any backup ? So instead of throwing the error, we redirect.
883
AppLogService.error("FormXPage l 897 : " + MESSAGE_ERROR_TOKEN );
884
_currentStep = StepHome.findByPrimaryKey(Integer.parseInt(request.getParameter(FormsConstants.PARAMETER_ID_STEP)));
885
+ List<String> errorList = new ArrayList<>( );
886
+ _currentStep = FormsResponseUtils.getNextStep( _currentStep.getId( ), errorList, _formResponseManager );
887
return getStepView( request );
888
}
889
0 commit comments