Index: lams_tool_vote/src/java/org/lamsfoundation/lams/tool/vote/web/VoteMonitoringAction.java =================================================================== RCS file: /usr/local/cvsroot/lams_tool_vote/src/java/org/lamsfoundation/lams/tool/vote/web/VoteMonitoringAction.java,v diff -u -r1.59 -r1.59.2.1 --- lams_tool_vote/src/java/org/lamsfoundation/lams/tool/vote/web/VoteMonitoringAction.java 26 May 2014 22:44:38 -0000 1.59 +++ lams_tool_vote/src/java/org/lamsfoundation/lams/tool/vote/web/VoteMonitoringAction.java 13 Feb 2015 23:02:49 -0000 1.59.2.1 @@ -87,10 +87,12 @@ voteService.hideOpenVote(voteUsrAttempt); String toolContentID = voteMonitoringForm.getToolContentID(); + String contentFolderID = voteMonitoringForm.getContentFolderID(); ActionRedirect redirect = new ActionRedirect( mapping.findForwardConfig(VoteAppConstants.MONITORING_STARTER_REDIRECT)); redirect.addParameter(AttributeNames.PARAM_TOOL_CONTENT_ID, toolContentID); + redirect.addParameter(AttributeNames.PARAM_CONTENT_FOLDER_ID, contentFolderID); return redirect; } @@ -109,10 +111,12 @@ voteService.showOpenVote(voteUsrAttempt); String toolContentID = voteMonitoringForm.getToolContentID(); + String contentFolderID = voteMonitoringForm.getContentFolderID(); ActionRedirect redirect = new ActionRedirect( mapping.findForwardConfig(VoteAppConstants.MONITORING_STARTER_REDIRECT)); redirect.addParameter(AttributeNames.PARAM_TOOL_CONTENT_ID, toolContentID); + redirect.addParameter(AttributeNames.PARAM_CONTENT_FOLDER_ID, contentFolderID); return redirect; }