From 0fe01a0336aa7c299f49d3f8906d0645d54c2d3f Mon Sep 17 00:00:00 2001 From: Sven Slootweg Date: Thu, 17 Jan 2013 07:11:00 +0100 Subject: [PATCH] Add 'new' ticket status for unreviewed tickets --- public_html/include/constants.php | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/public_html/include/constants.php b/public_html/include/constants.php index e24100e..f8efeaf 100644 --- a/public_html/include/constants.php +++ b/public_html/include/constants.php @@ -20,11 +20,12 @@ $constants = array( "PRIORITY_HIGH" => 4, "PRIORITY_CRITICAL" => 5, - "OPEN" => 1, - "CLOSED" => 2, - "INVALID" => 3, - "NEEDS_REVIEW" => 4, - "IN_PROGRESS" => 5 + "NEW" => 1, + "OPEN" => 2, + "CLOSED" => 3, + "INVALID" => 4, + "NEEDS_REVIEW" => 5, + "IN_PROGRESS" => 6 "ATTACHMENT_FILE" => 1, "ATTACHMENT_COMMIT" => 2,