Editing Severity and Priority...
Posted: 26 Jul 2006, 00:17
I'm using 1.0.1 version of Mantis (for political reasons I can't upgrade), and I’m having trouble editing certain of the global fields and I wondered if any of you had any thoughts on it. The intent behind this is to get mantis to match the ingrained bug reporting terminology where I work. To this end I’ve edited the core\constant_inc.php file with the following:
# priority
define( 'LOW', 10 );
define( 'MEDIUM', 20 );
define( 'HIGH', 30 );
# severity
define( 'A', 10 );
define( 'B', 20 );
define( 'C', 30 );
define( 'S', 40 );
I changed config_defaults_inc.php as follows:
$g_priority_enum_string = '10:low,20:medium,30:high';
$g_severity_enum_string = '10:A,20:B,30:C,40:S';
And I edited the strings_english.txt:
$s_priority_enum_string = '10:low,20:medium,30:high';
$s_severity_enum_string = '10:A,20:B,30:C,40:S';
Yet when I try and report a bug I get the following error message:
APPLICATION ERROR #203
A number was expected for severity.
My changes are all based on the Enumerations section of the manual. Any ideas on what I'm doing wrong?
# priority
define( 'LOW', 10 );
define( 'MEDIUM', 20 );
define( 'HIGH', 30 );
# severity
define( 'A', 10 );
define( 'B', 20 );
define( 'C', 30 );
define( 'S', 40 );
I changed config_defaults_inc.php as follows:
$g_priority_enum_string = '10:low,20:medium,30:high';
$g_severity_enum_string = '10:A,20:B,30:C,40:S';
And I edited the strings_english.txt:
$s_priority_enum_string = '10:low,20:medium,30:high';
$s_severity_enum_string = '10:A,20:B,30:C,40:S';
Yet when I try and report a bug I get the following error message:
APPLICATION ERROR #203
A number was expected for severity.
My changes are all based on the Enumerations section of the manual. Any ideas on what I'm doing wrong?