new severity in Mantis 1.0.8

Post about your customizations to share with others.

Moderators: Developer, Contributor

Post Reply
iceman
Posts: 2
Joined: 11 Feb 2008, 09:33

new severity in Mantis 1.0.8

Post by iceman »

Hi,

I change my constant_inc.php and string_english.txt

constant_inc.php

# severity
define( 'FEATURE', 10 );
define( 'TRIVIAL', 20 );
define( 'TEXT', 30 );
define( 'TWEAK', 40 );
define( 'MINOR', 50 );
define( 'MAJOR', 60 );
define( 'CRASH', 70 );
define( 'BLOCK', 80 );
define( 'CLOSED', 90 );
define( 'DEATH', 100 );

string_english.txt

$s_severity_enum_string = '10:feature,20:trivial,30:text,40:tweak,50:minor,60:major,70:crash,80:block,90:closed,100:death';

When I want report a new bug i don't see this new severity?
What else I must change and where?

Cheers
Iceman
iceman
Posts: 2
Joined: 11 Feb 2008, 09:33

Re: new severity in Mantis 1.0.8

Post by iceman »

It's solved.
I must also change in config_defaults_inc.php in mantis root directory.

Cheers
vboctor
Site Admin
Posts: 1293
Joined: 13 Feb 2005, 22:11
Location: Redmond, Washington
Contact:

Re: new severity in Mantis 1.0.8

Post by vboctor »

By the way, you should never change config_defaults_inc.php. Any value that you want to overwrite should be included in config_inc.php. This will allow you to upgrade to future Mantis releases without losing your changes.
Migrate your MantisBT to the MantisHub Cloud
Post Reply