forked from science-ation/science-ation
Compare commits
2 Commits
ccbdcb5ae4
...
d9c2aa38e6
Author | SHA1 | Date | |
---|---|---|---|
d9c2aa38e6 | |||
64d71a91e7 |
@ -82,7 +82,7 @@ switch (get_value_from_array($_GET, 'action')) {
|
|||||||
|
|
||||||
user_save($u);
|
user_save($u);
|
||||||
|
|
||||||
if($POST['questions'])
|
if($_POST['questions'])
|
||||||
questions_save_answers('judgereg', $u['id'], $_POST['questions']);
|
questions_save_answers('judgereg', $u['id'], $_POST['questions']);
|
||||||
|
|
||||||
happy_('Preferences successfully saved');
|
happy_('Preferences successfully saved');
|
||||||
|
@ -268,9 +268,9 @@ function questions_editor($section, $year, $array_name, $self)
|
|||||||
$q->execute([$_GET['impyear']]);
|
$q->execute([$_GET['impyear']]);
|
||||||
while ($r = $q->fetch(PDO::FETCH_OBJ)) {
|
while ($r = $q->fetch(PDO::FETCH_OBJ)) {
|
||||||
$x++;
|
$x++;
|
||||||
$stmt = $pdo->prepare("INSERT INTO questions (id,year,section,db_heading,question,type,required,ord)
|
$stmt = $pdo->prepare("INSERT INTO questions (year,section,db_heading,question,type,required,ord)
|
||||||
\t\t\t\t\t\t\t\t\tVALUES (?,?,?,?,?,?,?)");
|
VALUES (?,?,?,?,?,?,?)");
|
||||||
$stmt->execute([$year, $r->section, $r->question, $r->type, $r->required, $r->ord]);
|
$stmt->execute([$year, $r->section, $r->db_heading, $r->question, $r->type, $r->required, $r->ord]);
|
||||||
}
|
}
|
||||||
|
|
||||||
echo happy(i18n(
|
echo happy(i18n(
|
||||||
|
@ -132,7 +132,6 @@ show_pdo_errors_if_any($pdo);
|
|||||||
$stmt = $pdo->prepare("DELETE FROM TC_ProjectForms WHERE ProjectID=? AND FormID=? AND `year`=?");
|
$stmt = $pdo->prepare("DELETE FROM TC_ProjectForms WHERE ProjectID=? AND FormID=? AND `year`=?");
|
||||||
$stmt->execute([$r->id, $k, $CURRENT_FAIRYEAR]);
|
$stmt->execute([$r->id, $k, $CURRENT_FAIRYEAR]);
|
||||||
$stmt = $pdo->prepare("INSERT INTO TC_ProjectForms (`FormID`,`ProjectID`,`uploaded`,`filename`,`pages`,`dt`,`year`) VALUES (
|
$stmt = $pdo->prepare("INSERT INTO TC_ProjectForms (`FormID`,`ProjectID`,`uploaded`,`filename`,`pages`,`dt`,`year`) VALUES (
|
||||||
$stmt->execute();
|
|
||||||
'$k',
|
'$k',
|
||||||
'$r->id',
|
'$r->id',
|
||||||
'1',
|
'1',
|
||||||
@ -141,6 +140,7 @@ show_pdo_errors_if_any($pdo);
|
|||||||
NOW(),
|
NOW(),
|
||||||
'$CURRENT_FAIRYEAR'
|
'$CURRENT_FAIRYEAR'
|
||||||
)");
|
)");
|
||||||
|
$stmt->execute();
|
||||||
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
Loading…
x
Reference in New Issue
Block a user