View Issue Details

IDProjectCategoryView StatusLast Update
0003438mantisbtfeaturepublic2014-10-02 18:21
Reporterkond Assigned Tograngeway  
PrioritynormalSeverityfeatureReproducibilityalways
Status closedResolutionfixed 
Summary0003438: feature request: change status field
Description

It would be useful to show resolution reason it the status field for resolved and closed bugs.

Additional Information

Please comment on this request:
do you plan to include this feature and when?

TagsNo tags attached.

Activities

proffe

proffe

2005-02-03 15:37

reporter   ~0009192

See issue 0003834.

Alcatraz

Alcatraz

2005-05-18 07:32

reporter   ~0010164

I'm not PHP programmer :), but I've just changed Mantis 1.0.0a2 to do that. It works but would be really nice to implement this feature by mantis team.

1) In file core/columns_api.php in function "print_column_status" replace the first printf with:

printf( '<a title="%s">%s</a>'
, get_enum_element( 'resolution', $p_row['resolution'] )
, ( ($p_row['status']>=config_get( 'show_resolution_instead_status' ))?(get_enum_element( 'resolution', $p_row['resolution'] )):(get_enum_element( 'status', $p_row['status'] )))
);

2) to config_inc.php add line

$g_show_resolution_instead_status = 80;

grangeway

grangeway

2014-09-22 16:10

reporter   ~0041286

This can be achieved in newer versions of mantis by using the column customisation functionality and adding 'resolution' as an additional column.