Index: lams_central/web/includes/javascript/outcome.js =================================================================== diff -u -r8ed3b25f15a9ea80cc6f1c3d92210429404501df -rc1a3db58d656de47b6006019dc48f592787bf032 --- lams_central/web/includes/javascript/outcome.js (.../outcome.js) (revision 8ed3b25f15a9ea80cc6f1c3d92210429404501df) +++ lams_central/web/includes/javascript/outcome.js (.../outcome.js) (revision c1a3db58d656de47b6006019dc48f592787bf032) @@ -8,7 +8,8 @@ function removeOutcome(outcomeId) { if (confirm(LABELS.REMOVE_OUTCOME_CONFIRM_LABEL)) { - document.location.href = 'outcomeRemove.do?organisationID=' + organisationId + '&outcomeId=' + outcomeId; + var f = document.getElementById(outcomeId); + f.submit(); } } @@ -90,4 +91,4 @@ }, 1000); document.location.href = LAMS_URL + 'outcome/' + (isScaleExport ? 'scaleExport' : 'outcomeExport') + '.do?downloadTokenValue=' + token; return false; -} \ No newline at end of file +}