Page 1 of 1

Custom Status Numbers

Posted: 27 Jan 2012, 14:37
by andrea.mills
A project is trying to change the workflow of an existing Mantis database. This involves adding some new statuses, hopefully without having to update all old statuses.

For this reason, I added a status "82:ready for test", but its not showing up on the site. I followed the directions at http://www.mantisbt.org/manual/manual.c ... values.php
  • custom_constant_inc: define the new status READY_FOR_TEST as 82.
  • config_inc: $g_status_enum_string ("82:ready for test") and $g_status_colors ('ready for test' => 'color').
  • custom_strings_inc: $s_status_enum_string ("82:ready for test") and added $s_ready_for_test_bug_title and $s_ready_for_test_bug_button
Are there any glaring mistakes here? Must statuses be a multiple of 5?

Re: Custom Status Numbers

Posted: 27 Jan 2012, 14:49
by andrea.mills
Never mind: seemed to be that since the workflow didn't include the new status, it just didn't appear in the view issues page.