diff --git a/admin/project_editor.php b/admin/project_editor.php index 2c081dc3..1f417be3 100644 --- a/admin/project_editor.php +++ b/admin/project_editor.php @@ -72,6 +72,7 @@ switch ($action) { $q = $pdo->prepare("SELECT id FROM projects WHERE registrations_id='{$registrations_id}' AND year='{$config['FAIRYEAR']}'"); $q->execute(); $i = $q->fetch(PDO::FETCH_ASSOC); + $id = $i['id']; $stmt = $pdo->prepare("UPDATE projects SET projectnumber=NULL,projectsort=NULL, @@ -80,8 +81,9 @@ switch ($action) { $stmt->execute(); show_pdo_errors_if_any($pdo); list($pn, $ps, $pns, $pss) = generateProjectNumber($registrations_id); + // print("Generated Project Number [$pn]"); - $stmt = $pdo->prepare("UPDATE projects SET projectnumber='$pn',projectsort='$ps', + $stmt = $pdo->prepare("UPDATE projects SET projectnumber='$pn',projectsort='$ps', projectnumber_seq='$pns',projectsort_seq='$pss' WHERE id='$id'"); $stmt->execute(); @@ -138,23 +140,40 @@ function project_save() error_('Project title truncated to %1 characters', array($config['participant_project_title_charmax'])); } else $title = stripslashes($_POST['title']); - - $stmt = $pdo->prepare('UPDATE projects SET ' - . "title='" . iconv('UTF-8', 'ISO-8859-1//TRANSLIT', $title) . "', " - . "projectdivisions_id='" . intval($_POST['projectdivisions_id'] . "', " - . "projecttype='" . stripslashes($_POST['projecttype']) . "', " - . "language='" . stripslashes($_POST['language']) . "', " - . "req_table='" . stripslashes($_POST['req_table']) . "', " - . "req_electricity='" . stripslashes($_POST['req_electricity']) . "', " - . "req_special='" . iconv('UTF-8', 'ISO-8859-1//TRANSLIT', stripslashes($_POST['req_special'])) . "', " - . "human_participants='" . stripslashes($_POST['human_participants']) . "', " - . "animal_participants='" . stripslashes($_POST['animal_participants']) . "', " - . "summary='" . iconv('UTF-8', 'ISO-8859-1//TRANSLIT', stripslashes($_POST['summary'])) . "', " - . "summarycountok='$summarycountok'," - . "feedback='" . iconv('UTF-8', 'ISO-8859-1//TRANSLIT', stripslashes($_POST['feedback'])) . "', " - . "projectsort='" . stripslashes($_POST['projectsort']) . "'" - . "WHERE id='" . intval($_POST['id'])) . "'"); - + + $stmt = $pdo->prepare( + 'UPDATE projects SET + title = :title, + projectdivisions_id = :projectdivisions_id, + projecttype = :projecttype, + language = :language, + req_table = :req_table, + req_electricity = :req_electricity, + req_special = :req_special, + human_participants = :human_participants, + animal_participants = :animal_participants, + summary = :summary, + summarycountok = :summarycountok, + feedback = :feedback, + projectsort = :projectsort + WHERE id = :id' + ); + + $stmt->bindValue(':title', $_POST['title']); + $stmt->bindValue(':projectdivisions_id', intval($_POST['projectdivisions_id'])); + $stmt->bindValue(':projecttype', $_POST['projecttype']); + $stmt->bindValue(':language', $_POST['language']); + $stmt->bindValue(':req_table', $_POST['req_table']); + $stmt->bindValue(':req_electricity', $_POST['req_electricity']); + $stmt->bindValue(':req_special', $_POST['req_special']); + $stmt->bindValue(':human_participants', $_POST['human_participants']); + $stmt->bindValue(':animal_participants', $_POST['animal_participants']); + $stmt->bindValue(':summary', $_POST['summary']); + $stmt->bindValue(':summarycountok', $summarycountok); + $stmt->bindValue(':feedback', $_POST['feedback']); + $stmt->bindValue(':projectsort', $_POST['projectsort']); + $stmt->bindValue(':id', intval($_POST['id'])); + $stmt->execute(); show_pdo_errors_if_any($pdo); @@ -291,7 +310,7 @@ function countwords() ?>