/**
  * Save Thresholds
  *
  * @param
  * @return
  */
 function saveThresholds()
 {
     global $ilCtrl, $lng;
     include_once "./Modules/Survey/classes/class.ilSurveySkillThresholds.php";
     $thres = new ilSurveySkillThresholds($this->survey);
     if (is_array($_POST["threshold"])) {
         foreach ($_POST["threshold"] as $l => $t) {
             $thres->writeThreshold((int) $_GET["sk_id"], (int) $_GET["tref_id"], (int) $l, (int) $t);
         }
         ilUtil::sendSuccess($lng->txt("msg_obj_modified"), 1);
     }
     $ilCtrl->redirect($this, "listSkillThresholds");
 }