Index: lams_tool_lamc/web/authoring/newQuestionBox.jsp
===================================================================
diff -u -r82475bcf94096557635a347e2927c9995c8a03ee -r993fec58a7198f31f151cf47d6ba331148ce4fae
--- lams_tool_lamc/web/authoring/newQuestionBox.jsp (.../newQuestionBox.jsp) (revision 82475bcf94096557635a347e2927c9995c8a03ee)
+++ lams_tool_lamc/web/authoring/newQuestionBox.jsp (.../newQuestionBox.jsp) (revision 993fec58a7198f31f151cf47d6ba331148ce4fae)
@@ -37,21 +37,19 @@
document.McAuthoringForm.submit();
}
- function submitModifyAuthoringCandidate(questionIndexValue, candidateIndexValue, actionMethod)
+
+ function submitModifyAddedAuthoringCandidate(candidateIndexValue, actionMethod)
{
document.McAuthoringForm.candidateIndex.value=candidateIndexValue;
- document.McAuthoringForm.questionIndex.value=questionIndexValue;
submitMethod(actionMethod);
}
- function removeCandidate(questionIndexValue, candidateIndexValue)
+ function removeAddedCandidate(candidateIndexValue)
{
document.McAuthoringForm.candidateIndex.value=candidateIndexValue;
- document.McAuthoringForm.questionIndex.value=questionIndexValue;
- submitMethod("removeCandidate");
+ submitMethod("removeAddedCandidate");
}
-
@@ -69,6 +67,7 @@