diff --git a/common.inc.php b/common.inc.php index dd311e8c..b5195450 100644 --- a/common.inc.php +++ b/common.inc.php @@ -737,7 +737,7 @@ function emit_month_selector($name, $selected = '') { echo "\n"; - echo '\n"; + echo '\n"; for ($x = 1; $x <= 31; $x++) echo '\n"; @@ -764,7 +764,7 @@ function emit_year_selector($name, $selected = '', $min = 0, $max = 0) { $curyear = date('Y'); echo "\n"; echo REQUIREDFIELD . ''; - echo ' ' . i18n('Email Address') . ": email\" />"; + echo ' ' . i18n('Email Address') . ": email\" />". REQUIREDFIELD .""; echo "\n"; echo ''; echo ' ' . i18n('Phone 1') . ": phone1\" />" . REQUIREDFIELD . ''; diff --git a/register_participants_project.php b/register_participants_project.php index 732f8731..538062cc 100644 --- a/register_participants_project.php +++ b/register_participants_project.php @@ -77,6 +77,7 @@ if (get_value_from_array($_POST, 'action') == 'save') { } else if (registrationDeadlinePassed()) { echo error(i18n('Cannot make changes to forms after registration deadline')); } else { + try { // first, lets make sure this project really does belong to them $q = $pdo->prepare('SELECT * FROM projects WHERE id=? AND registrations_id=? AND year=?'); $q->execute([$_POST['id'], $_SESSION['registration_id'], $config['FAIRYEAR']]); @@ -122,11 +123,14 @@ if (get_value_from_array($_POST, 'action') == 'save') { stripslashes($_POST['language']), stripslashes($_POST['req_table']), stripslashes($_POST['req_electricity']), stripslashes($_POST['req_special']), stripslashes($_POST['human_participants']), stripslashes($_POST['animal_participants']), stripslashes($_POST['summary']), $summarycountok, $_POST['id']]); - show_pdo_errors_if_any($pdo); + echo notice(i18n('Project information successfully updated')); } else { echo error(i18n('Invalid project to update')); } + } catch (PDOException $exception) { + echo error(i18n('Failed to update project information. Please ensure all mandatory fields have values.')); + } } } diff --git a/register_participants_students.php b/register_participants_students.php index dfb28448..39c64af4 100644 --- a/register_participants_students.php +++ b/register_participants_students.php @@ -102,33 +102,38 @@ if (get_value_from_array($_POST, 'action') == 'save') { } else { $schoolvalue = "'" . stripslashes($_POST['schools_id'][$x]) . "', "; } - // INSERT new record - $dob = $_POST['year'][$x] . '-' . $_POST['month'][$x] . '-' . $_POST['day'][$x]; - $stmt = $pdo->prepare('INSERT INTO students (registrations_id,firstname,lastname,pronunciation,email,address,city,county,province,postalcode,phone,dateofbirth,grade,schools_id,tshirt,medicalalert,foodreq,teachername,teacheremail,year) VALUES (' - . "'" . $_SESSION['registration_id'] . "', " - . "'" . stripslashes($_POST['firstname'][$x]) . "', " - . "'" . stripslashes($_POST['lastname'][$x]) . "', " - . "'" . stripslashes($_POST['pronunciation'][$x]) . "', " - . "'" . stripslashes($_POST['email'][$x]) . "', " - . "'" . stripslashes($_POST['address'][$x]) . "', " - . "'" . stripslashes($_POST['city'][$x]) . "', " - . "'" . stripslashes($_POST['county'][$x]) . "', " - . "'" . stripslashes($_POST['province'][$x]) . "', " - . "'" . stripslashes($_POST['postalcode'][$x]) . "', " - . "'" . stripslashes($_POST['phone'][$x]) . "', " - . "'$dob', " - . "'" . stripslashes($_POST['grade'][$x]) . "', " - . $schoolvalue - . "'" . stripslashes($_POST['tshirt'][$x]) . "', " - . "'" . stripslashes($_POST['medicalalert'][$x]) . "', " - . "'" . stripslashes($_POST['foodreq'][$x]) . "', " - . "'" . stripslashes($_POST['teachername'][$x]) . "', " - . "'" . stripslashes($_POST['teacheremail'][$x]) . "', " - . "'" . $config['FAIRYEAR'] . "')"); - $stmt->execute(); - $students_id = $pdo->lastInsertId(); - echo notice(i18n('%1 %2 successfully added', array($_POST['firstname'][$x], $_POST['lastname'][$x]))); + try { + // INSERT new record + $dob = $_POST['year'][$x] . '-' . $_POST['month'][$x] . '-' . $_POST['day'][$x]; + $stmt = $pdo->prepare('INSERT INTO students (registrations_id,firstname,lastname,pronunciation,email,address,city,county,province,postalcode,phone,dateofbirth,grade,schools_id,tshirt,medicalalert,foodreq,teachername,teacheremail,year) VALUES (' + . "'" . $_SESSION['registration_id'] . "', " + . "'" . stripslashes($_POST['firstname'][$x]) . "', " + . "'" . stripslashes($_POST['lastname'][$x]) . "', " + . "'" . stripslashes($_POST['pronunciation'][$x]) . "', " + . "'" . stripslashes($_POST['email'][$x]) . "', " + . "'" . stripslashes($_POST['address'][$x]) . "', " + . "'" . stripslashes($_POST['city'][$x]) . "', " + . "'" . stripslashes($_POST['county'][$x]) . "', " + . "'" . stripslashes($_POST['province'][$x]) . "', " + . "'" . stripslashes($_POST['postalcode'][$x]) . "', " + . "'" . stripslashes($_POST['phone'][$x]) . "', " + . "'$dob', " + . "'" . stripslashes($_POST['grade'][$x]) . "', " + . $schoolvalue + . "'" . stripslashes($_POST['tshirt'][$x]) . "', " + . "'" . stripslashes($_POST['medicalalert'][$x]) . "', " + . "'" . stripslashes($_POST['foodreq'][$x]) . "', " + . "'" . stripslashes($_POST['teachername'][$x]) . "', " + . "'" . stripslashes($_POST['teacheremail'][$x]) . "', " + . "'" . $config['FAIRYEAR'] . "')"); + $stmt->execute(); + $students_id = $pdo->lastInsertId(); + + echo notice(i18n('%1 %2 successfully added', array($_POST['firstname'][$x], $_POST['lastname'][$x]))); + } catch (PDOException $exception) { + echo error(i18n('Failed to add student %1 %2. Please ensure all mandatory fields are complete.', array($_POST['firstname'][$x], $_POST['lastname'][$x]))); + } } else { // if they use schoolpassword or singlepassword, then we dont need to save teh schools_id because its already set when they inserted the record, and we dont allow them to change their school. if (($config['participant_registration_type'] == 'schoolpassword' || $config['participant_registration_type'] == 'invite') && !$_POST['schools_id'][$x]) { @@ -137,31 +142,35 @@ if (get_value_from_array($_POST, 'action') == 'save') { $schoolquery = "schools_id='" . stripslashes($_POST['schools_id'][$x]) . "', "; } - // UPDATE existing record - $dob = $_POST['year'][$x] . '-' . $_POST['month'][$x] . '-' . $_POST['day'][$x]; - $stmt = $pdo->prepare('UPDATE students SET ' - . "firstname='" . stripslashes($_POST['firstname'][$x]) . "', " - . "lastname='" . stripslashes($_POST['lastname'][$x]) . "', " - . "pronunciation='" . stripslashes($_POST['pronunciation'][$x]) . "', " - . "email='" . stripslashes($_POST['email'][$x]) . "', " - . "address='" . stripslashes($_POST['address'][$x]) . "', " - . "city='" . stripslashes($_POST['city'][$x]) . "', " - . "county='" . stripslashes($_POST['county'][$x]) . "', " - . "province='" . stripslashes($_POST['province'][$x]) . "', " - . "postalcode='" . stripslashes($_POST['postalcode'][$x]) . "', " - . "phone='" . stripslashes($_POST['phone'][$x]) . "', " - . "dateofbirth='$dob', " - . "grade='" . stripslashes($_POST['grade'][$x]) . "', " - . $schoolquery - . "medicalalert='" . stripslashes($_POST['medicalalert'][$x]) . "', " - . "foodreq='" . stripslashes($_POST['foodreq'][$x]) . "', " - . "teachername='" . stripslashes($_POST['teachername'][$x]) . "', " - . "teacheremail='" . stripslashes($_POST['teacheremail'][$x]) . "', " - . "tshirt='" . stripslashes($_POST['tshirt'][$x]) . "' " - . "WHERE id='$students_id'"); - $stmt->execute(); - - echo notice(i18n('%1 %2 successfully updated', array($_POST['firstname'][$x], $_POST['lastname'][$x]))); + try { + // UPDATE existing record + $dob = $_POST['year'][$x] . '-' . $_POST['month'][$x] . '-' . $_POST['day'][$x]; + $stmt = $pdo->prepare('UPDATE students SET ' + . "firstname='" . stripslashes($_POST['firstname'][$x]) . "', " + . "lastname='" . stripslashes($_POST['lastname'][$x]) . "', " + . "pronunciation='" . stripslashes($_POST['pronunciation'][$x]) . "', " + . "email='" . stripslashes($_POST['email'][$x]) . "', " + . "address='" . stripslashes($_POST['address'][$x]) . "', " + . "city='" . stripslashes($_POST['city'][$x]) . "', " + . "county='" . stripslashes($_POST['county'][$x]) . "', " + . "province='" . stripslashes($_POST['province'][$x]) . "', " + . "postalcode='" . stripslashes($_POST['postalcode'][$x]) . "', " + . "phone='" . stripslashes($_POST['phone'][$x]) . "', " + . "dateofbirth='$dob', " + . "grade='" . stripslashes($_POST['grade'][$x]) . "', " + . $schoolquery + . "medicalalert='" . stripslashes($_POST['medicalalert'][$x]) . "', " + . "foodreq='" . stripslashes($_POST['foodreq'][$x]) . "', " + . "teachername='" . stripslashes($_POST['teachername'][$x]) . "', " + . "teacheremail='" . stripslashes($_POST['teacheremail'][$x]) . "', " + . "tshirt='" . stripslashes($_POST['tshirt'][$x]) . "' " + . "WHERE id='$students_id'"); + $stmt->execute(); + + echo notice(i18n('%1 %2 successfully updated', array($_POST['firstname'][$x], $_POST['lastname'][$x]))); + } catch (PDOException $exception) { + echo error(i18n('Failed to update student %1 %2. Please ensure all mandatory fields are complete.', array($_POST['firstname'][$x], $_POST['lastname'][$x]))); + } } /* Update the regfee items link */ if ($config['participant_regfee_items_enable'] == 'yes') { @@ -455,8 +464,8 @@ for ($x = 1; $x <= $numtoshow; $x++) { echo "\n"; echo "\n"; - echo ' ' . i18n('Teacher Name') . "\n"; - echo ' ' . i18n('Teacher Email') . "\n"; + echo ' ' . i18n('Teacher Name') . "". REQUIREDFIELD ."\n"; + echo ' ' . i18n('Teacher Email') . "". REQUIREDFIELD ."\n"; echo "\n"; if ($config['participant_regfee_items_enable'] == 'yes') { diff --git a/theme/science_ation/style.css b/theme/science_ation/style.css index 0280d28a..8e16254c 100644 --- a/theme/science_ation/style.css +++ b/theme/science_ation/style.css @@ -195,6 +195,7 @@ a:hover { padding: 0px; margin-left: 30px; margin-right: 30px; + width: fit-content; }