Skip to content

Commit

Permalink
Clickable summaries in view issues page
Browse files Browse the repository at this point in the history
Fixes #8066, PR #1235
  • Loading branch information
scfido committed Feb 10, 2021
1 parent 3081131 commit 63b7278
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions core/columns_api.php
Expand Up @@ -1508,8 +1508,9 @@ function print_column_summary( BugData $p_bug, $p_columns_target = COLUMNS_TARGE
} else {
$t_summary = string_display_line_links( $p_bug->summary );
}

echo '<td class="column-summary">' . $t_summary . '</td>';

$t_bug_url = string_get_bug_view_url( $p_bug->id );
echo '<td class="column-summary"><a href="' . $t_bug_url . '">' . $t_summary . '</a></td>';
}

/**
Expand Down

0 comments on commit 63b7278

Please sign in to comment.