Page 1 of 1

Remove one/two default status values of Mantis

Posted: 07 Apr 2005, 18:54
by HRogge
I have set up a small Mantis installation and would like to remove a few of the Mantis status values. Is there an easy way to remove some of them without editing too many files ?

Posted: 07 Apr 2005, 19:47
by thraxisp
Yes, reset the value of $g_status_enum in your config_inc.php file. The original value looks like:

$g_status_enum_string = '10:new,20:feedback,30:acknowledged,40:confirmed,50:assigned,80:resolved,90:closed';

Just remove the number and name pairs as required. Watch out that you don't refer to the removed statuses on other parameters though.

Posted: 10 Apr 2005, 15:07
by HRogge
Thank you