Bugs
query($bugs_q);
if($bugs_r->rowCount() > 0) {
?>
Title | Description | Owner |
$row[title] | " . truncate($row['description']) . " | $row[submitter] | \n";
}
?>
Zero boogs found.\n";
}
?>
Reports
Create\n";
}
# reports query
$reports_q = 'SELECT reports.id AS id, title, description, users.username AS user FROM reports JOIN users ON reports.author=users.id WHERE bug IS NULL ORDER BY id';
$reports_r = $conn->query($reports_q);
if($reports_r->rowCount() > 0) {
?>
Title | Description | Submitted by |
$row[title] | " . truncate($row['description']) . " | $row[user] | \n";
}
?>
No unassigned reports.\n";
}
require_once(TEMPLATES_PATH . "/footer.php");
?>