Page 1 of 1

How do I add a new status?

Posted: 09 Jan 2007, 23:47
by s050399b
Hi,

How do I add a new status like, "verified fix"?

And how do make that only a particular person or UserID can close bugs?

Thanks

Posted: 10 Jan 2007, 00:28
by ed
How do I add a new status like, "verified fix"?
Have a look at Mantis Enum Strings in config_defaults_inc.php
And how do make that only a particular person or UserID can close bugs?
$g_set_status_threshold in the same file

Posted: 10 Jan 2007, 06:46
by s050399b
I put in the config_inc.php file:

$g_set_status_threshold = array( VERIFIED => tester );

$g_access_levels_enum_string = '10:viewer,25:reporter,40:updater,55:developer,60:tester,70:manager,90:administrator';

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



1) it display my status as "@60@" instead of "tester"
2) i couldn't see "verified" in the advanced page view of the bug under "changed status to:"

Posted: 11 Jan 2007, 03:30
by Stephen_Chuang
ed wrote:
How do I add a new status like, "verified fix"?
Have a look at Mantis Enum Strings in config_defaults_inc.php
And how do make that only a particular person or UserID can close bugs?
$g_set_status_threshold in the same file
Thank you very much.

Posted: 11 Jan 2007, 07:48
by ed
s050399b wrote: 1) it display my status as "@60@" instead of "tester"
2) i couldn't see "verified" in the advanced page view of the bug under "changed status to:"
Not sure. Try one thing at a time. What happens if you remove the $g_set_status_threshold setting?

Posted: 17 Jan 2007, 18:25
by Narcissus
http://www.mantisbt.org/manual/manual.c ... ations.php

That link should walk you through the process of customising these lists.