Skip to content

Commit

Permalink
manage_config_workflow_page, fix html
Browse files Browse the repository at this point in the history
For threshold rows, fix html.
When user don't have access level to modify, in some situation,
the status table cell was not visible due to html error.

Fixes: #21583
  • Loading branch information
cproensa committed Aug 4, 2016
1 parent bd81d88 commit 002b4f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion manage_config_workflow_page.php
Expand Up @@ -286,7 +286,7 @@ function threshold_row( $p_threshold ) {
echo '</select> </td>' . "\n";
$g_can_change_flags = true;
} else {
echo '<td' . $t_color . '>' . MantisEnum::getLabel( lang_get( 'status_enum_string' ), $t_project ) . '&#160;</td>' . "\n";
echo '<td class="' . $t_color . '">' . MantisEnum::getLabel( lang_get( 'status_enum_string' ), $t_project ) . '&#160;</td>' . "\n";
echo '<td>' . MantisEnum::getLabel( lang_get( 'access_levels_enum_string' ), config_get_access( $p_threshold ) ) . '&#160;</td>' . "\n";
}

Expand Down

0 comments on commit 002b4f7

Please sign in to comment.