From 86d87b985ce10c51cf044c68bcb3382a20a1f6bc Mon Sep 17 00:00:00 2001 From: Aqua-sama Date: Fri, 30 Apr 2021 10:03:14 +0300 Subject: Reports can be bound to bugs --- bug/view.php | 2 +- report/edit.php | 14 +++++++++++++- report/update.php | 5 +++-- 3 files changed, 17 insertions(+), 4 deletions(-) diff --git a/bug/view.php b/bug/view.php index 6b26860..5b627db 100644 --- a/bug/view.php +++ b/bug/view.php @@ -38,7 +38,7 @@ if($reports->rowCount() > 0) { TitleDescriptionSubmitted by $row[title] " . truncate($row['description']) . " $row[user]\n"; + echo "$row[title] " . truncate($row['description']) . " $row[user]\n"; } ?> diff --git a/report/edit.php b/report/edit.php index ef289bd..cd2e1a8 100644 --- a/report/edit.php +++ b/report/edit.php @@ -14,8 +14,9 @@ $title = ""; $submitter = $_SESSION['user_name']; $description = ""; +$conn = new PDO($config['db']['dsn'], $config['db']['username'], $config['db']['password']); + if($id != "") { - $conn = new PDO($config['db']['dsn'], $config['db']['username'], $config['db']['password']); $query = $conn->prepare("SELECT title, description, users.username AS submitter FROM reports JOIN users ON reports.author=users.id WHERE reports.id=:report_id"); @@ -28,6 +29,9 @@ if($id != "") { $description = $result['description']; } +# get bug id's +$bugs = $conn->query("SELECT id, title FROM bugs"); + ?>
@@ -35,6 +39,14 @@ if($id != "") {

Title:

Submitted by:

Description:

+

Assign to bug:

diff --git a/report/update.php b/report/update.php index 0fadb53..c8ef12b 100644 --- a/report/update.php +++ b/report/update.php @@ -7,8 +7,8 @@ require_once(LIBRARY_PATH . "/functions.php"); if(session_set()) { $conn = new PDO($config['db']['dsn'], $config['db']['username'], $config['db']['password']); $query = $_POST['id'] == "" ? - $conn->prepare("INSERT INTO reports (author, title, description) VALUES (:user_id, :title, :description)") - : $conn->prepare("UPDATE reports SET title=:title, description=:description WHERE id=:report_id"); + $conn->prepare("INSERT INTO reports (author, title, description, bug) VALUES (:user_id, :title, :description, :bug_id)") + : $conn->prepare("UPDATE reports SET title=:title, description=:description, bug=:bug_id WHERE id=:report_id"); if($_POST['id'] == "") { $query->bindParam(':user_id', $_SESSION['user_id']); } else { @@ -16,6 +16,7 @@ if(session_set()) { } $query->bindParam(':title', $_POST['title']); $query->bindParam(':description', $_POST['description']); + $query->bindValue(':bug_id', $_POST['bug_id'] == "" ? null : $_POST['bug_id']); if($query->execute()) { echo "

report submitted

"; } else { -- cgit v1.2.1