View Issue Details

IDProjectCategoryView StatusLast Update
0007103mantisbtcustomizationpublic2006-09-12 00:52
Reporternachtwandler Assigned Tovboctor  
PrioritynormalSeverityminorReproducibilityalways
Status closedResolutionfixed 
Product Version1.0.2 
Fixed in Version1.1.0a1 
Summary0007103: Added column resolution in view issues wrong content
Description

I added the column resolution in view issues. Using the csv-export the shown values are string like "fixed", "open", etc.
But in the view issues view only numbers (10,20,30,40,...) are shown. There is no transformation to language specific strings.

Additional Information

Same problem in version 1.0.1

TagsNo tags attached.

Activities

vboctor

vboctor

2006-05-18 02:25

manager   ~0012869

This can be fixed by adding the following code to mantisbt/core/columns_api.php:

--------------------

$p_columns_target: see COLUMNSTARGET* in constant_inc.php

function print_column_resolution( $p_row, $p_columns_target = COLUMNS_TARGET_VIEW_PAGE ) {
echo '<td class="center">', get_enum_element( 'resolution', $p_row['resolution'] ), '</td>';
}