Skip to content

Commit

Permalink
Fixes #10568: Reproducibility column is shown as numbers in issue list.
Browse files Browse the repository at this point in the history
  • Loading branch information
vboctor committed Jun 7, 2009
1 parent 87866cd commit babd70f
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions core/columns_api.php
Expand Up @@ -954,6 +954,17 @@ function print_column_eta( $p_row, $p_columns_target = COLUMNS_TARGET_VIEW_PAGE
echo '<td class="center">', get_enum_element( 'eta', $p_row['eta'] ), '</td>';
}

/**
*
* @param array $p_row bug row
* @param int $p_columns_target: see COLUMNS_TARGET_* in constant_inc.php
* @return null
* @access public
*/
function print_column_reproducibility( $p_row, $p_columns_target = COLUMNS_TARGET_VIEW_PAGE ) {
echo '<td class="center">', get_enum_element( 'reproducibility', $p_row['reproducibility'] ), '</td>';
}

/**
*
* @param array $p_row bug row
Expand Down

0 comments on commit babd70f

Please sign in to comment.