Skip to content

Commit

Permalink
Remove issue id tooltips in summary page
Browse files Browse the repository at this point in the history
Fixes #21728
  • Loading branch information
dregad committed Sep 30, 2016
1 parent 0476be0 commit 571e92c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/summary_api.php
Expand Up @@ -386,7 +386,7 @@ function summary_print_by_activity() {
bug_cache_array_rows( $t_summarybugs );

foreach( $t_summarydata as $t_row ) {
$t_bugid = string_get_bug_view_link( $t_row['id'] );
$t_bugid = string_get_bug_view_link( $t_row['id'], false );
$t_summary = string_display_line( $t_row['summary'] );
$t_notescount = $t_row['count'];

Expand Down Expand Up @@ -431,7 +431,7 @@ function summary_print_by_age() {
break;
}

$t_bugid = string_get_bug_view_link( $t_row['id'] );
$t_bugid = string_get_bug_view_link( $t_row['id'], false );
$t_summary = string_display_line( $t_row['summary'] );
$t_days_open = intval( ( time() - $t_row['date_submitted'] ) / SECONDS_PER_DAY );

Expand Down

0 comments on commit 571e92c

Please sign in to comment.