mirror of
https://github.com/itflow-org/itflow
synced 2026-03-21 21:15:38 +00:00
Fix recurring Tickets priority var
This commit is contained in:
@@ -22,7 +22,7 @@ $sql = mysqli_query(
|
|||||||
ORDER BY
|
ORDER BY
|
||||||
CASE
|
CASE
|
||||||
WHEN '$sort' = 'scheduled_ticket_priority' THEN
|
WHEN '$sort' = 'scheduled_ticket_priority' THEN
|
||||||
CASE ticket_priority
|
CASE scheduled_ticket_priority
|
||||||
WHEN 'High' THEN 1
|
WHEN 'High' THEN 1
|
||||||
WHEN 'Medium' THEN 2
|
WHEN 'Medium' THEN 2
|
||||||
WHEN 'Low' THEN 3
|
WHEN 'Low' THEN 3
|
||||||
|
|||||||
@@ -28,7 +28,7 @@ $sql = mysqli_query(
|
|||||||
ORDER BY
|
ORDER BY
|
||||||
CASE
|
CASE
|
||||||
WHEN '$sort' = 'scheduled_ticket_priority' THEN
|
WHEN '$sort' = 'scheduled_ticket_priority' THEN
|
||||||
CASE ticket_priority
|
CASE scheduled_ticket_priority
|
||||||
WHEN 'High' THEN 1
|
WHEN 'High' THEN 1
|
||||||
WHEN 'Medium' THEN 2
|
WHEN 'Medium' THEN 2
|
||||||
WHEN 'Low' THEN 3
|
WHEN 'Low' THEN 3
|
||||||
|
|||||||
Reference in New Issue
Block a user