Remove one/two default status values of Mantis
Moderators: Developer, Contributor
Remove one/two default status values of Mantis
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 ?
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.
$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.