I only want 4 severities

Get help from other users here.

Moderators: Developer, Contributor

Post Reply
cpayette
Posts: 1
Joined: 13 Jul 2015, 16:43

I only want 4 severities

Post by cpayette »

I only want 4 severities in my bug tracker "Feature, Minor, Major, Crash". I've added this to my config_inc.php:

Code: Select all

$g_severity_enum_string            = '10:feature,20:minor,30:major,40:crash';
But when I go to report an issue it shows: Feature, Trivial, Text, Tweak

What am I doing wrong?
atrol
Site Admin
Posts: 8366
Joined: 26 Mar 2008, 21:37
Location: Germany

Re: I only want 4 severities

Post by atrol »

Set it this way

Code: Select all

$g_severity_enum_string = '10:feature,50:minor,60:major,70:crash';
Please use Search before posting and read the Manual
Post Reply