How do I add a new status?

General discussion of Mantis.

Moderators: Developer, Contributor

Post Reply
s050399b
Posts: 22
Joined: 10 Nov 2006, 00:46

How do I add a new status?

Post 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
ed
Posts: 143
Joined: 14 Feb 2005, 02:04
Location: Sydney, Australia

Post 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
s050399b
Posts: 22
Joined: 10 Nov 2006, 00:46

Post 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:"
Stephen_Chuang
Posts: 1
Joined: 11 Jan 2007, 03:13

Post 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.
ed
Posts: 143
Joined: 14 Feb 2005, 02:04
Location: Sydney, Australia

Post 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?
Narcissus
Developer
Posts: 338
Joined: 17 Feb 2005, 09:45

Post by Narcissus »

http://www.mantisbt.org/manual/manual.c ... ations.php

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