Index: lams_tool_vote/src/java/org/lamsfoundation/lams/tool/vote/web/VoteMonitoringAction.java =================================================================== diff -u -r5b17b810b5302c90b2daf6a5866bf4f6e85bef6a -rcce41fc01efa8103d62fac358488b979e8e90ad6 --- 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 cce41fc01efa8103d62fac358488b979e8e90ad6) @@ -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; }