Skip to content

Commit

Permalink
Issue #12545: Remove deprecated <u> tag from account_sponsorship_page
Browse files Browse the repository at this point in the history
The old HTML <u> tag is deprecated and has no direct replacement. We
should be using CSS for styling instead.
  • Loading branch information
davidhicks committed Dec 26, 2010
1 parent 49aac09 commit 6f0f593
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion account_sponsor_page.php
Expand Up @@ -285,7 +285,7 @@
echo '<td><a href="' . string_get_bug_view_url( $row['bug'] ) . '">' . bug_format_id( $row['bug'] ) . '</a></td>';
echo '<td>' . project_get_field( $t_bug->project_id, 'name' ) . '&#160;</td>';
echo '<td class="right">' . $t_released_label . '&#160;</td>';
echo '<td><a title="' . $t_resolution . '"><u>' . $t_status . '</u>&#160;</a></td>';
echo '<td><a title="' . $t_resolution . '"><span class="underline">' . $t_status . '</span>&#160;</a></td>';

# summary
echo '<td>' . string_display_line( $t_bug->summary );
Expand Down

0 comments on commit 6f0f593

Please sign in to comment.