Skip to content

Commit

Permalink
Remove bold font in display of category on view.php
Browse files Browse the repository at this point in the history
Commit cf75393 performed a mass update
which incorrectly replaced the 'td' tag to display category data in the
bug view page, by a 'th' tag. This caused the category to be displayed
in bold.
  • Loading branch information
dregad committed Oct 7, 2011
1 parent bfd83a1 commit 5bf0888
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bug_view_inc.php
Expand Up @@ -354,7 +354,7 @@
echo '<td class="bug-project">', $tpl_project_name, '</td>';

# Category
echo '<th class="bug-category">', $tpl_category, '</th>';
echo '<td class="bug-category">', $tpl_category, '</td>';

# View Status
echo '<td class="bug-view-status">', $tpl_bug_view_state_enum, '</td>';
Expand Down

0 comments on commit 5bf0888

Please sign in to comment.