Skip to content

Commit 5bf0888

Browse files
committedOct 7, 2011
Remove bold font in display of category on view.php
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.
1 parent bfd83a1 commit 5bf0888

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎bug_view_inc.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,7 @@
354354
echo '<td class="bug-project">', $tpl_project_name, '</td>';
355355

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

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

0 commit comments

Comments
 (0)
Please sign in to comment.