'English', 'fr' => 'French' );
$rounds = timeslots_load_rounds($mysqli);
$num_rounds = count($rounds);
switch($action) {
case 'save':
if($closed) exit();
post_bool($u['j_willing_lead'], 'j_willing_lead');
if($config['judge_ask_dinner']) {
post_bool($u['j_dinner'], 'j_dinner');
} else {
$u['j_dinner'] = 0;
}
$u['j_rounds'] = array();
if($config['judge_require_all_rounds']) {
/* Fill the rounds as though they selected 'yes' to each round for time availability */
for($r = 0; $r<$num_rounds; $r++) {
$u['j_rounds'][$r] = $r;
}
} else {
for($r = 0; $r<$num_rounds; $r++) {
post_int($u['j_rounds'][$r], array('j_rounds', $r) );
}
}
$u['j_languages'] = NULL;
post_array($u['j_languages'], 'j_languages', $langs);
user_save($mysqli, $u);
incomplete_check($mysqli, $ret, $u, $page_id, true);
$e = '';
if(count($incomplete_errors) > 0) {
$e = join('
', $incomplete_errors);
}
form_ajax_response(array('status'=>0, 'missing'=>$ret, 'error'=>$e));
exit();
}
$dinner_time = '';
$dinner_help = '';
if($config['judge_ask_dinner'] == 1) {
if($num_rounds >= 2) {
$dinner_start = date('g:ia', $rounds[0]['end_timestamp']);
$dinner_end = date('g:ia', $rounds[1]['start_timestamp']);
$dinner_time = " from $dinner_start - $dinner_end on judging day";
}
$dinner_help = "