Skip to content

Commit

Permalink
Issue #12545: Replace deprecated <strike> tag with CSS equivalent
Browse files Browse the repository at this point in the history
The old HTML <strike> tag is deprecated and should be replaced with a
CSS equivalent.
  • Loading branch information
davidhicks committed Dec 26, 2010
1 parent aa04132 commit 096b8c2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/custom_function_api.php
Expand Up @@ -110,8 +110,8 @@ function custom_function_default_roadmap_print_issue( $p_issue_id, $p_issue_leve
$t_bug = bug_get( $p_issue_id );

if( bug_is_resolved( $p_issue_id ) ) {
$t_strike_start = '<strike>';
$t_strike_end = '</strike>';
$t_strike_start = '<span class="strike">';
$t_strike_end = '</span>';
} else {
$t_strike_start = $t_strike_end = '';
}
Expand Down

0 comments on commit 096b8c2

Please sign in to comment.