mirror of
https://github.com/itflow-org/itflow
synced 2026-03-23 14:05:38 +00:00
Merge branches
This commit is contained in:
@@ -18,6 +18,12 @@ if (!empty($_GET['status'])) {
|
|||||||
$ticket_statuses = array();
|
$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
|
// Ticket assignment status filter
|
||||||
if (isset($_GET['assigned']) & !empty($_GET['assigned'])) {
|
if (isset($_GET['assigned']) & !empty($_GET['assigned'])) {
|
||||||
if ($_GET['assigned'] == 'unassigned') {
|
if ($_GET['assigned'] == 'unassigned') {
|
||||||
|
|||||||
Reference in New Issue
Block a user