Fix a few outstanding issues

This commit is contained in:
patrick 2025-02-14 17:15:02 +00:00
parent 2b687ebc2b
commit 4e464ca8d3
3 changed files with 3 additions and 2 deletions

View File

@ -45,7 +45,7 @@ echo ' <tr>';
echo ' <td><a href="divisions_cwsf.php">' . theme_icon('cwsf_project_divisions') . '<br />' . i18n('CWSF Project Divisions') . '</a></td>';
echo ' <td><a href="subdivisions.php">' . theme_icon('project_sub_divisions') . '<br />' . i18n('Project Sub-Divisions') . '</a></td>';
echo ' <td><a href="pagetexts.php">' . theme_icon('page_texts') . '<br />' . i18n('Page Texts') . '</a></td>';
echo ' <td><a href="signaturepage.php">' . theme_icon('exhibitor_signature_page') . '<br />' . i18n("Exhibitor $participationform") . '</a></td>';
//echo ' <td><a href="signaturepage.php">' . theme_icon('exhibitor_signature_page') . '<br />' . i18n("Exhibitor $participationform") . '</a></td>';
echo " </tr>\n";
echo "<hr class='thematic-break'/>";
echo ' <tr>';

View File

@ -213,7 +213,7 @@ else{
// echo '<br /><font color="red">(' . i18n('Available when ALL above sections are "Complete"') . ')</font>';
echo '</td><td>';
echo i18n('Print');
echo i18n('Sign');
// check to see if its complete
echo '</td></tr>';

View File

@ -161,6 +161,7 @@ if (get_value_from_array($_POST, 'action') == 'save') {
. "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])));
}