Compare commits

...

2 Commits

Author SHA1 Message Date
d9c2aa38e6 Fix judge questions 2025-03-13 17:11:20 +00:00
64d71a91e7 Fix DB query 2025-03-13 16:33:16 +00:00
3 changed files with 5 additions and 5 deletions

View File

@ -82,7 +82,7 @@ switch (get_value_from_array($_GET, 'action')) {
user_save($u);
if($POST['questions'])
if($_POST['questions'])
questions_save_answers('judgereg', $u['id'], $_POST['questions']);
happy_('Preferences successfully saved');

View File

@ -268,9 +268,9 @@ function questions_editor($section, $year, $array_name, $self)
$q->execute([$_GET['impyear']]);
while ($r = $q->fetch(PDO::FETCH_OBJ)) {
$x++;
$stmt = $pdo->prepare("INSERT INTO questions (id,year,section,db_heading,question,type,required,ord)
\t\t\t\t\t\t\t\t\tVALUES (?,?,?,?,?,?,?)");
$stmt->execute([$year, $r->section, $r->question, $r->type, $r->required, $r->ord]);
$stmt = $pdo->prepare("INSERT INTO questions (year,section,db_heading,question,type,required,ord)
VALUES (?,?,?,?,?,?,?)");
$stmt->execute([$year, $r->section, $r->db_heading, $r->question, $r->type, $r->required, $r->ord]);
}
echo happy(i18n(

View File

@ -132,7 +132,6 @@ show_pdo_errors_if_any($pdo);
$stmt = $pdo->prepare("DELETE FROM TC_ProjectForms WHERE ProjectID=? AND FormID=? AND `year`=?");
$stmt->execute([$r->id, $k, $CURRENT_FAIRYEAR]);
$stmt = $pdo->prepare("INSERT INTO TC_ProjectForms (`FormID`,`ProjectID`,`uploaded`,`filename`,`pages`,`dt`,`year`) VALUES (
$stmt->execute();
'$k',
'$r->id',
'1',
@ -141,6 +140,7 @@ show_pdo_errors_if_any($pdo);
NOW(),
'$CURRENT_FAIRYEAR'
)");
$stmt->execute();
}
else