mirror of
https://github.com/itflow-org/itflow
synced 2026-02-28 10:54:52 +00:00
Merge branches
This commit is contained in:
@@ -18,6 +18,12 @@ if (!empty($_GET['status'])) {
|
||||
$ticket_statuses = array();
|
||||
}
|
||||
|
||||
// Set Status Clause for SQL Query
|
||||
if (empty($ticket_statuses)) {
|
||||
$ticket_status_clause = "ticket_status != 'Closed'";
|
||||
} else {
|
||||
$ticket_status_clause = "ticket_status IN ('" . implode("','", $ticket_statuses) . "')";
|
||||
}
|
||||
// Ticket assignment status filter
|
||||
if (isset($_GET['assigned']) & !empty($_GET['assigned'])) {
|
||||
if ($_GET['assigned'] == 'unassigned') {
|
||||
|
||||
Reference in New Issue
Block a user