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
How do I add a new status?
Moderators: Developer, Contributor
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:"
$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:"
-
Stephen_Chuang
- Posts: 1
- Joined: 11 Jan 2007, 03:13
http://www.mantisbt.org/manual/manual.c ... ations.php
That link should walk you through the process of customising these lists.
That link should walk you through the process of customising these lists.