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 title, description, author FROM reports WHERE bug IS NULL';
$reports_r = $conn->query($reports_q);
if($reports_r->rowCount() > 0) {
?>
Title | Description | Submitted by |
$row[title] | " . truncate($row['description']) . " | $row[submitter] | \n";
}
?>
No unassigned reports.\n";
}
require_once(TEMPLATES_PATH . "/footer.php");
?>