From e3b440d8da63947c4e4286e62f863071382d4845 Mon Sep 17 00:00:00 2001 From: justin Date: Sat, 4 Apr 2009 13:43:07 +0000 Subject: [PATCH] Fix problem if not all score entries are entered in score entry; and move send_headers earlier to avoid conflict --- admin/judging_score_edit.php | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/admin/judging_score_edit.php b/admin/judging_score_edit.php index ebf2529e..33c8ddb8 100644 --- a/admin/judging_score_edit.php +++ b/admin/judging_score_edit.php @@ -26,6 +26,11 @@ require_once("../user.inc.php"); require_once("judges.inc.php"); user_auth_required('committee', 'admin'); + send_header("Judging Score Entry - Update", + array('Committee Main' => 'committee_main.php', + 'Administration' => 'admin/index.php', + 'Judging Score Entry' => 'admin/judging_score_entry.php') + ); $year=$config['FAIRYEAR']; $project_id = NULL; @@ -35,21 +40,18 @@ $project_id = $_POST['projectid']; $curr_team = $_POST['score_count']; while($curr_team > 0) { + if($_POST["team_" . $curr_team . "_score"] != "") { mysql_query("UPDATE judges_teams_timeslots_projects_link SET score=" . mysql_real_escape_string($_POST["team_" . $curr_team . "_score"]) . " WHERE judges_teams_id = " . mysql_real_escape_string($_POST["team_" . $curr_team . "_id"]) . " and projects_id =$project_id and year=$year"); echo mysql_error(); + } $curr_team--; } } - send_header("Judging Score Entry - Update", - array('Committee Main' => 'committee_main.php', - 'Administration' => 'admin/index.php', - 'Judging Score Entry' => 'admin/judging_score_entry.php') - ); - ?> + ?>