diff --git a/judge.inc.php b/judge.inc.php index 8798c75c..f6eba80f 100644 --- a/judge.inc.php +++ b/judge.inc.php @@ -85,8 +85,8 @@ function judge_status_questions($u) */ global $config, $pdo; // get the questions we're looking for - $q = $pdo->prepare('SELECT id FROM questions WHERE year=? AND required=yes'); - $q->execute([$config['FAIRYEAR']]); + $q = $pdo->prepare('SELECT id FROM questions WHERE year=? AND required=?'); + $q->execute([$config['FAIRYEAR'], 'yes']); $idList = array(); while ($row = $q->fetch(PDO::FETCH_ASSOC)) $idList[] = $row['id']; diff --git a/user.inc.php b/user.inc.php index 0f319bb0..80de1068 100644 --- a/user.inc.php +++ b/user.inc.php @@ -557,8 +557,6 @@ function user_save(&$u) show_pdo_errors_if_any($pdo); } - echo '
'; var_dump($u['password']); var_dump($u['orig']['password']); echo '
'; - /* Save the password if it changed */ if (($u['password'] == "") || ($u['password'] != $u['orig']['password'])) $u['password'] = user_set_password($u['id'], $u['password']); diff --git a/user_personal.php b/user_personal.php index f865ebea..fe67c313 100644 --- a/user_personal.php +++ b/user_personal.php @@ -369,7 +369,7 @@ if (in_array('committee', $u['types'])) { echo ''; } -echo '\n"; +echo '\n"; echo '';