diff --git a/admin/award_awardcreatedivisional.php b/admin/award_awardcreatedivisional.php index 9c970259..09c59acc 100644 --- a/admin/award_awardcreatedivisional.php +++ b/admin/award_awardcreatedivisional.php @@ -32,11 +32,11 @@ 'Awards Main' => 'admin/awards.php') ); - if($_GET['sponsors_id']) $sponsors_id=$_GET['sponsors_id']; - else if($_POST['sponsors_id']) $sponsors_id=$_POST['sponsors_id']; + if(get_value_from_array($_GET, 'sponsors_id')) $sponsors_id=$_GET['sponsors_id']; + else if(get_value_from_array($_POST,'sponsors_id')) $sponsors_id=$_POST['sponsors_id']; - if($_GET['award_types_id']) $award_types_id=$_GET['award_types_id']; - else if($_POST['award_types_id']) $award_types_id=$_POST['award_types_id']; + if(get_value_from_array($_GET, 'award_types_id')) $award_types_id=$_GET['award_types_id']; + else if(get_value_from_array($_POST, 'award_types_id')) $award_types_id=$_POST['award_types_id']; //first, we can only do this if we dont have any type=divisional awards created yet diff --git a/admin/award_awards.php b/admin/award_awards.php index 18337884..8489dcc7 100644 --- a/admin/award_awards.php +++ b/admin/award_awards.php @@ -229,8 +229,6 @@ WHERE id='$id'"); $q->execute(); -// echo $q; -// echo mysql_error(); happy_("Prize saved"); exit; @@ -307,8 +305,6 @@ exit; case 'feeder_save': -// print_r($_POST); - $id = intval($_POST['award_awards_id']); $dl = is_array($_POST['feeder_dl']) ? $_POST['feeder_dl'] : array(); $ul = is_array($_POST['feeder_ul']) ? $_POST['feeder_ul'] : array(); diff --git a/admin/awards.inc.php b/admin/awards.inc.php index 9515c2ba..bebbd1c1 100644 --- a/admin/awards.inc.php +++ b/admin/awards.inc.php @@ -28,7 +28,8 @@ function award_delete($award_awards_id) $q = $pdo->prepare("SELECT id FROM award_prizes WHERE award_awards_id='$award_awards_id'"); $q->execute(); - while(($p = $q->fetch(PDO::FETCH_ASSOC))) { + + while(($p = $q->fetch(PDO::FETCH_ASSOC))) { $q = $pdo->prepare(); $q->execute("DELETE FROM winners WHERE award_prizes_id='{$p['id']}'"); @@ -54,13 +55,11 @@ function award_delete($award_awards_id) function award_prize_delete($award_prizes_id) { - $q = $pdo->prepare("DELETE FROM winners WHERE award_prizes_id='$award_prizes_id'"); $q->execute(); $q = $pdo->prepare("DELETE FROM award_prizes WHERE id='$award_prizes_id'"); $q->execute(); - } ?> diff --git a/admin/committees.php b/admin/committees.php index ef3ab541..e5a22b46 100644 --- a/admin/committees.php +++ b/admin/committees.php @@ -142,7 +142,7 @@ if(get_value_from_array($_POST,'committees_id') && get_value_from_array($_POST,' $titles=$_POST['title']; $pords = $_POST['order']; - while($ids[$x]) { + while(get_value_from_array($ids, $x)) { $cid = intval($ids[$x]); $q = $pdo->prepare("UPDATE committees SET ord='".intval($ords[$x])."' WHERE id='$cid'"); @@ -342,36 +342,36 @@ if(get_value_from_array($_GET, 'unlinkmember') && get_value_from_array($_GET,'un } echo "\n"; - echo $pdo->errorInfo(); + while($r2=$q2->fetch(PDO::FETCH_OBJ)) { - $u = user_load_by_uid($r2->uid); - echo "
"; $q=$pdo->prepare("SELECT COUNT(*) AS c FROM judges_teams WHERE autocreate_type_id!='1' AND year='".$config['FAIRYEAR']."'"); diff --git a/admin/judges_teams_members.php b/admin/judges_teams_members.php index 66921c12..8b4d079d 100644 --- a/admin/judges_teams_members.php +++ b/admin/judges_teams_members.php @@ -106,11 +106,11 @@ jQuery(document).ready(function(){ - if($_POST['action']=="add" && $_POST['team_num'] && count($_POST['judgelist'])>0) { + if(get_value_from_array($_POST, 'action') == "add" && get_value_from_array($_POST, 'team_num') && count(get_value_from_array($_POST, 'judgelist'))>0) { //first check if this team exists. $q=$pdo->prepare("SELECT id,name FROM judges_teams WHERE num='".$_POST['team_num']."' AND year='".$config['FAIRYEAR']."'"); $q->execute(); - if($q->rowCount();) + if($q->rowCount()) { $r=$q->fetch(PDO::FETCH_OBJ); $team_id=$r->id; @@ -130,7 +130,7 @@ jQuery(document).ready(function(){ $q=$pdo->prepare("SELECT * FROM judges_teams_link WHERE users_id='$selectedjudge' AND judges_teams_id='$team_id'"); $q->execute(); - if($q->rowCount();) { + if($q->rowCount()) { echo notice(i18n("Judge (%1) already belongs to judging team: %2",array($selectedjudge,$team_name))); } @@ -152,7 +152,7 @@ jQuery(document).ready(function(){ echo happy(i18n("%1 %2 added to team #%3 (%4)",array($added,$j,$_POST['team_num'],$team_name))); } - if($_GET['action']=="del" && $_GET['team_num'] && $_GET['team_id'] && $_GET['users_id']) + if(get_value_from_array($_GET, 'action') == "del" && get_value_from_array($_GET, 'team_num') && get_value_from_array($_GET, 'team_id') && get_value_from_array($_GET, 'users_id')) { $stmt = $pdo->prepare("DELETE FROM judges_teams_link WHERE users_id='".$_GET['users_id']."' AND judges_teams_id='".$_GET['team_id']."' AND year='".$config['FAIRYEAR']."'"); $stmt->execute(); @@ -161,7 +161,7 @@ jQuery(document).ready(function(){ //if there is still members left in the team, make sure we have a captain still $q = $pdo->prepare("SELECT * FROM judges_teams_link WHERE judges_teams_id='".$_GET['team_id']."' AND year='".$config['FAIRYEAR']."'"); $q->execute(); - if($q->rowCount();) + if($q->rowCount()) { //make sure the team still has a captain! //FIXME: this might best come from the "i am willing to be a team captain" question under the judges profile @@ -191,14 +191,14 @@ jQuery(document).ready(function(){ } } - if($_GET['action']=="empty" && $_GET['team_num'] && $_GET['team_id']) + if(get_value_from_array($_GET, 'action') == "empty" && get_value_from_array($_GET, 'team_num') && get_value_from_array($_GET, 'team_id')) { $stmt = $pdo->prepare("DELETE FROM judges_teams_link WHERE judges_teams_id='".$_GET['team_id']."' AND year='".$config['FAIRYEAR']."'"); $stmt->execute(); echo happy(i18n("Emptied all judges from team #%1 (%2)",array($_GET['team_num'],$_GET['team_name']))); } - if($_POST['action']=="saveteamnames") + if(get_value_from_array($_POST, 'action') == "saveteamnames") { if(count($_POST['team_names'])) { @@ -212,7 +212,7 @@ jQuery(document).ready(function(){ } - if($_GET['action']=="addcaptain") + if(get_value_from_array($_GET, 'action') == "addcaptain") { //teams can have as many captains as they want, so just add it. @@ -221,12 +221,12 @@ jQuery(document).ready(function(){ echo happy(i18n("Team captain assigned")); } - if($_GET['action']=="removecaptain") + if(get_value_from_array($_GET, 'action') == "removecaptain") { //teams must always have at least one captain, so if we only have one, and we are trying to remove it, dont let them! $q=$pdo->prepare("SELECT * FROM judges_teams_link WHERE captain='yes' AND judges_teams_id='".$_GET['team_id']."'"); $q->execute(); - if($q->rowCount();<2) + if($q->rowCount() < 2) { echo error(i18n("A judge team must always have at least one captain")); } @@ -238,7 +238,7 @@ jQuery(document).ready(function(){ } } - if($_GET['action']=="autoassignspecial") { + if(get_value_from_array($_GET, 'action') == "autoassignspecial") { /* Load all the judges (judge_complete=yes, deleted=no, year=fairyear) */ $judgelist = judges_load_all(); @@ -276,7 +276,7 @@ jQuery(document).ready(function(){ //find the award id linked to a team $q=$pdo->prepare("SELECT * FROM judges_teams_awards_link WHERE award_awards_id='{$awardid}' AND year='{$config['FAIRYEAR']}'"); $q->execute(); - if($q->rowCount();) { + if($q->rowCount()) { while($r=$q->fetch(PDO::FETCH_OBJ)) { $stmt = $pdo->prepare("INSERT INTO judges_teams_link (users_id,judges_teams_id,captain,year) VALUES ('$jid','$r->judges_teams_id','yes','{$config['FAIRYEAR']}')"); $stmt->execute(); @@ -298,7 +298,7 @@ jQuery(document).ready(function(){ if(!$_SESSION['viewstate']['judges_teams_list_show']) $_SESSION['viewstate']['judges_teams_list_show']='unassigned'; //now update the judges_teams_list_show viewstate - if($_GET['judges_teams_list_show']) + if(get_value_from_array($_GET, 'judges_teams_list_show')) $_SESSION['viewstate']['judges_teams_list_show']=$_GET['judges_teams_list_show']; echo " | ||||
"; diff --git a/admin/judges_teams_projects.php b/admin/judges_teams_projects.php index acee51bc..7094e534 100644 --- a/admin/judges_teams_projects.php +++ b/admin/judges_teams_projects.php @@ -233,16 +233,17 @@ if( ($action=="edit" || $action=="assign" ) && $edit) registrations WHERE projectnumber is not null - " . getJudgingEligibilityCode(). " AND + ' . getJudgingEligibilityCode(). ' AND projects.registrations_id=registrations.id AND judges_teams_timeslots_projects_link.projects_id IS NULL AND projects.year='".$config['FAIRYEAR']."' ORDER BY projectnumber"; } + $pq=$pdo->($querystr); $pq->execute(); - echo $pdo->errorInfo(); + show_pdo_errors_if_any($pdo); $eligibleprojects=getProjectsEligibleOrNominatedForAwards($award_ids); // echo nl2br(print_r($eligibleprojects,true)); diff --git a/admin/judges_teams_timeslots.php b/admin/judges_teams_timeslots.php index e54fbc4b..a62a7452 100644 --- a/admin/judges_teams_timeslots.php +++ b/admin/judges_teams_timeslots.php @@ -38,14 +38,14 @@ $action = $_POST['action']; - if($action == 'delete' && array_key_exists('delete', $_GET)) { + if(get_value_from_array($_GET, 'action') && $action == 'delete') { $id = intval($_GET['delete']); $stmt = $pdo->prepare("DELETE FROM judges_teams_timeslots_link WHERE id='$id'"); $stmt->execute(); message_push(happy(i18n("Judging team timeslot successfully removed"))); } - if($action == 'empty' && array_key_exists('empty',$_GET)) { + if(array_key_exists('empty', $_GET) && $action == 'empty') { $id = intval($_GET['empty']); $stmt = $pdo->prepare("DELETE FROM judges_teams_timeslots_link WHERE judges_teams_id='$id'"); $stmt->execute(); @@ -191,7 +191,7 @@ function checkinvert(what) echo " | ";
echo "".$team['name']." (#".$team['num'].") "; $memberlist=""; - if(count($team['members'])) + if(count(get_value_from_array($team, 'members', []))) { foreach($team['members'] AS $member) { diff --git a/admin/judges_timeslots.php b/admin/judges_timeslots.php index 828496e3..c177d60d 100644 --- a/admin/judges_timeslots.php +++ b/admin/judges_timeslots.php @@ -258,7 +258,7 @@ echo ""; echo " | |||
".i18n("Name").": | "; - echo " | |||
".i18n("Date").": | "; emit_date_selector("date",$r['date']); diff --git a/admin/registration_list.php b/admin/registration_list.php index a869f27e..3282c5dc 100644 --- a/admin/registration_list.php +++ b/admin/registration_list.php @@ -33,7 +33,7 @@ $auth_type = user_auth_required(array('fair','committee'), 'admin'); //require_once('../register_participants.inc.php'); - if($_GET['year']) $year=$_GET['year']; + if(get_value_from_array($_GET, 'year')) $year=$_GET['year']; else $year=$config['FAIRYEAR']; $q = $pdo->prepare("SELECT * FROM projectcategories WHERE year='$year' ORDER BY id"); @@ -45,10 +45,10 @@ while($r=$q->fetch(PDO::FETCH_OBJ)) $q = $pdo->prepare("SELECT * FROM projectdivisions WHERE year='$year' ORDER BY id"); $q->execute(); -while($q->fetch(PDO::FETCH_OBJ)) +while($r=$q->fetch(PDO::FETCH_OBJ)) $divs[$r->id]=$r->division; -$action=$_GET['action']; +$action=get_value_from_array($_GET, 'action'); switch($action) { case 'load_row': $id = intval($_GET['id']); diff --git a/admin/registration_receivedforms.php b/admin/registration_receivedforms.php index 9e01f608..d8eb17d9 100644 --- a/admin/registration_receivedforms.php +++ b/admin/registration_receivedforms.php @@ -323,7 +323,7 @@ echo $pdo->errorInfo(); echo "This button does not keep track of payments"; echo " | |||
"; echo ""; echo " |
$dn | "; $tstud=0; + $tstudcat = array(); $tproj=0; + $tprojcat = array(); foreach($cats AS $c=>$cn) { echo ""; - echo ($stats_students_catdiv[$c][$d]?$stats_students_catdiv[$c][$d]:0); + + echo ($stats_students_catdiv[$c][$d] ?? 0); echo " "; - echo ($stats_projects_catdiv[$c][$d]?$stats_projects_catdiv[$c][$d]:0); + echo ($stats_projects_catdiv[$c][$d] ?? 0); echo " | "; - $tstud+=$stats_students_catdiv[$c][$d]; - $tproj+=$stats_projects_catdiv[$c][$d]; - $tstudcat[$c]+=$stats_students_catdiv[$c][$d]; - $tprojcat[$c]+=$stats_projects_catdiv[$c][$d]; + $tstud+=$stats_students_catdiv[$c][$d] ?? 0; + $tproj+=$stats_projects_catdiv[$c][$d] ?? 0; + + $tstudcat[$c] = add_or_initialize($tstudcat, $c, $stats_students_catdiv[$c][$d] ?? 0); + $tprojcat[$c] = add_or_initialize($tprojcat, $c, $stats_projects_catdiv[$c][$d] ?? 0); } echo ""; echo ($tstud?$tstud:0); @@ -293,11 +300,10 @@ else $wherestatus=""; { foreach($languages AS $l=>$ln) { echo " | "; - echo ($stats_projects_lang[$c][$d][$l]?$stats_projects_lang[$c][$d][$l]:0); + echo ($stats_projects_lang[$c][$d][$l] ?? 0); echo " | "; - $tproj[$l]+=$stats_projects_lang[$c][$d][$l]; - - $tprojcat[$c][$l]+=$stats_projects_lang[$c][$d][$l]; + $tproj[$l] = add_or_initialize($tproj, $l, $stats_projects_lang[$c][$d][$l] ?? 0); + $tprojcat[$c][$l] = add_or_initialize_multi_2($tprojcat, $c, $l, $stats_projects_lang[$c][$d][$l] ?? 0); } } foreach($tproj AS $l=>$ln) { @@ -314,7 +320,7 @@ else $wherestatus=""; echo ""; echo ($tprojcat[$c][$l]?$tprojcat[$c][$l]:0); echo " | "; - $tproj[$l]+=$tprojcat[$c][$l]; + $tproj[$l] = add_or_initialize($tproj, $l, $tprojcat[$c][$l] ?? 0); } } foreach($tproj AS $l=>$ln) { diff --git a/admin/registration_webconsent.php b/admin/registration_webconsent.php index 2de79a9c..ac743347 100644 --- a/admin/registration_webconsent.php +++ b/admin/registration_webconsent.php @@ -34,7 +34,7 @@ echo "