Custom Status Applies to all projects view but not to some o
Posted: 09 Oct 2013, 19:44
I am unable to get all of the projects to acknowledge my custom status.
Mantis 1.2.15
The all projects view is correct, but it seems like there are project specific settings overriding this, and I can't find the config files where this is happening.
From Config_inc.php
From Config_defaults_inc.php
From Custom_strings_inc
From custom_constants_inc
Mantis 1.2.15
The all projects view is correct, but it seems like there are project specific settings overriding this, and I can't find the config files where this is happening.
From Config_inc.php
Code: Select all
$g_status_enum_string = '10:new,20:feedback,30:acknowledged,40:confirmed,50:assigned,60:awaiting sign off,70:release runway,71:released,80:resolved,90:closed';
$g_status_colors['assigned'] = '#FB8FF0';
$g_status_colors['feedback'] = '#33CC66';
$g_status_colors['release runway'] = '#99FFFF';
$g_status_colors['released'] = '#669999';
$g_status_colors['awaiting sign off'] = '#990000';
Code: Select all
$g_status_enum_string = '10:new,20:feedback,30:acknowledged,40:confirmed,50:assigned,60:awaiting sign off,70:release runway,71:released,80:resolved,90:closed';
$g_status_colors = array(
'new' => '#FFFFFF', # red,
'assigned' => '#CDEB8B', # blue
'feedback' => '#6bba70', # purple
'coding/testing' => '#bedb39',
'confirmed' => '#7388oa', # yellow
'resolved' => '#cceedd', # buish-green
'release runway' => '#C3D9FF',
'released' => '#87A0a4',
'internal signoff' => '#B02B2C',
'demoed' => '#4096ee', # light gray
'closed' => '#3f4c6b',);
Code: Select all
default: # english
$s_status_enum_string = '10:new,20:feedback,30:acknowledged,40:confirmed,50:assigned,60:awaiting sign off,70:release runway,71:released,80:resolved,90:closed';
$s_Release_Runway_bug_title = 'Mark issue Release Runway';
$s_Release_Runway_bug_button = 'Ready for Release Runway';
$s_awaiting_sign_off_title = 'Mark issue awaiting sign off';
$s_Release_Runway_bug_button = 'Ready for awaiting sign off';
$s_Released_bug_title = 'Mark issue Released';
$s_Released_bug_button = 'Release Her';
$s_email_notification_title_for_status_bug_testing = 'The following issue is ready for TESTING.';
break;
Code: Select all
define( 'AWAITING SIGN OFF', 60 );
define( 'RELEASE RUNWAY', 70 );
define( 'RELEASED', 71 );