diff --git a/judge_other.php b/judge_other.php index 1b43773f..bf55b783 100644 --- a/judge_other.php +++ b/judge_other.php @@ -80,8 +80,11 @@ switch (get_value_from_array($_GET, 'action')) { $u['flagged_judge'] = '1'; } - user_save($u); - questions_save_answers('judgereg', $u['id'], $_POST['questions']); + user_save($u); + + if($POST['questions']) + questions_save_answers('judgereg', $u['id'], $_POST['questions']); + happy_('Preferences successfully saved'); $u = user_load($eid); diff --git a/questions.inc.php b/questions.inc.php index 9be4a663..3cf6b7f6 100644 --- a/questions.inc.php +++ b/questions.inc.php @@ -43,7 +43,7 @@ function questions_load_answers($section, $users_id) } function questions_load_questions($section, $year) -{ +{ global $pdo; $q = $pdo->prepare('SELECT * FROM questions ' . "WHERE year='$year' " @@ -63,16 +63,20 @@ function questions_load_questions($section, $year) $qs[$r->id]['required'] = $r->required; $qs[$r->id]['question'] = $r->question; } + return $qs; } function questions_save_answers($section, $id, $answers) { global $config, $pdo; + $qs = questions_load_questions($section, $config['FAIRYEAR']); $keys = array_keys($answers); $q = $pdo->prepare("SELECT * FROM questions WHERE year='{$config['FAIRYEAR']}'"); $q->execute(); + + while ($r = $q->fetch(PDO::FETCH_OBJ)) { $stmt = $pdo->prepare("DELETE FROM question_answers WHERE users_id='$id' AND questions_id='$r->id'"); $stmt->execute(); @@ -109,21 +113,24 @@ function questions_print_answer_editor($section, &$u, $array_name) $ans = questions_load_answers($section, $u['id']); $qs = questions_load_questions($section, $u['year']); $keys = array_keys($qs); + foreach ($keys as $qid) { + $required = $qs[$qid]['required'] == 'yes' ? ' *' : ''; print("