View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0029858 | mantisbt | customization | public | 2022-04-14 07:46 | 2022-04-27 17:06 |
Reporter | slemzin | Assigned To | atrol | ||
Priority | normal | Severity | minor | Reproducibility | have not tried |
Status | closed | Resolution | no change required | ||
Product Version | 2.25.2 | ||||
Summary | 0029858: After adding a new status, it is not possible to transfer it to status "closed". | ||||
Description |
There is no problem when i change status from "test" to "feedback". Access Level of my user = administrator Also I tried do everything like in Admin_Guide:
| ||||
Tags | No tags attached. | ||||
Attached Files | config_inc.txt (677 bytes)
$g_status_enum_string = '10:new,20:feedback,30:acknowledged,40:confirmed,50:assigned,80:resolved,90:closed,100:test'; $g_status_colors = array( 'new' => '#fcbdbd', // red (scarlet red #ef2929) 'feedback' => '#e3b7eb', // purple (plum #75507b) 'acknowledged' => '#ffcd85', // orange (orango #f57900) 'confirmed' => '#fff494', // yellow (butter #fce94f) 'assigned' => '#c2dfff', // blue (sky blue #729fcf) 'resolved' => '#d2f5b0', // green (chameleon #8ae234) 'closed' => '#c9ccc4', // grey (aluminum #babdb6) 'test' => '#caedef'); // brown (milk choco #caedef) custom_strings_inc.txt (836 bytes)
<?php switch( $g_active_language ) { case 'russian': $s_status_enum_string = '10:новая,20:обратная связь,30:признана,40:подтверждена,50:назначена,80:решена,90:закрыта,100:тест'; $s_test_bug_title = 'Задача в тестировании'; $s_test_bug_button = 'Задача в тестировании'; $s_email_notification_title_for_status_bug_test = 'Следующая задача в Тестировании:'; break; default: # english $s_status_enum_string = '10:new,20:feedback,30:acknowledged,40:confirmed,50:assigned,80:resolved,90:closed,100:test'; $s_test_bug_title = 'Test Issue'; $s_test_bug_button = 'Test Issue'; $s_email_notification_title_for_status_bug_test = 'The following issue has been TESTED'; break; } | ||||
I recommend to introduce this "test" status somewhere between "assigned" and "resolved", e.g. Without that, there are some more customization options you have to change, e.g. status where an issue becomes read only, treshold which access level is allowed to change read-only issues, ... slemzin, This is not a bug or feature request for MantisBT (you are asking for help on how to configure the system). I am therefore resolving this issue as "no change required". Please use the forums to get support on customizing and using MantisBT (refer to http://www.mantisbt.org/support.php for links and further details). |
|