Index: lams_tool_vote/src/java/org/lamsfoundation/lams/tool/vote/web/VoteMonitoringAction.java =================================================================== diff -u -r5b17b810b5302c90b2daf6a5866bf4f6e85bef6a -r41516f9f751499e0b9a4920eca6f3a329d06fea9 --- lams_tool_vote/src/java/org/lamsfoundation/lams/tool/vote/web/VoteMonitoringAction.java (.../VoteMonitoringAction.java) (revision 5b17b810b5302c90b2daf6a5866bf4f6e85bef6a) +++ lams_tool_vote/src/java/org/lamsfoundation/lams/tool/vote/web/VoteMonitoringAction.java (.../VoteMonitoringAction.java) (revision 41516f9f751499e0b9a4920eca6f3a329d06fea9) @@ -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; }