Index: lams_tool_lamc/src/java/org/lamsfoundation/lams/tool/mc/web/McLearningAction.java =================================================================== diff -u -r90074dd16f503babb6ee61623cc4b7da4ffde5d0 -r33b8b66db88cde371050de61dc9af52e7b064546 --- lams_tool_lamc/src/java/org/lamsfoundation/lams/tool/mc/web/McLearningAction.java (.../McLearningAction.java) (revision 90074dd16f503babb6ee61623cc4b7da4ffde5d0) +++ lams_tool_lamc/src/java/org/lamsfoundation/lams/tool/mc/web/McLearningAction.java (.../McLearningAction.java) (revision 33b8b66db88cde371050de61dc9af52e7b064546) @@ -314,9 +314,8 @@ int mark=LearningUtil.getMark(mapLeanerAssessmentResults); logger.debug("mark: " + mark); - request.getSession().setAttribute(LEARNER_MARK, new Integer(mark).toString()); - request.getSession().setAttribute(LEARNER_MARK_ATLEAST, new Integer(mark+1).toString()); - + //request.getSession().setAttribute(LEARNER_MARK, new Integer(mark).toString()); + Map mapQuestionWeights =(Map) request.getSession().getAttribute(MAP_QUESTION_WEIGHTS); logger.debug("mapQuestionWeights: " + mapQuestionWeights); @@ -329,14 +328,12 @@ if (totalUserWeight < passMark.intValue()) { logger.debug("USER FAILED"); - request.getSession().setAttribute(USER_PASSED, new Boolean(false).toString()); logger.debug("totalUserWeight is less than passmark: " + totalUserWeight + " < " + passMark.intValue()); passed=false; } else { logger.debug("USER PASSED"); - request.getSession().setAttribute(USER_PASSED, new Boolean(true).toString()); passed=true; } }