Skip to content

Commit 64fccc7

Browse files
committedSep 22, 2012
Make all developer names links
Fixes #14677: Summary: developer names should be links
1 parent 44304e5 commit 64fccc7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎core/summary_api.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454

5555
function summary_helper_print_row( $p_label, $p_open, $p_resolved, $p_closed, $p_total ) {
5656
printf( '<tr %s>', helper_alternate_class() );
57-
printf( '<td width="50%%">%s</td>', string_display_line( $p_label ) );
57+
printf( '<td width="50%%">%s</td>', $p_label );
5858
printf( '<td width="12%%" class="right">%s</td>', $p_open );
5959
printf( '<td width="12%%" class="right">%s</td>', $p_resolved );
6060
printf( '<td width="12%%" class="right">%s</td>', $p_closed );
@@ -473,7 +473,7 @@ function summary_print_by_developer() {
473473
$v_bugcount = $row['bugcount'];
474474

475475
if(( $v_handler_id != $t_last_handler ) && ( -1 != $t_last_handler ) ) {
476-
$t_user = string_display_line( user_get_name( $t_last_handler ) );
476+
$t_user = summary_helper_get_developer_label( $t_last_handler );
477477

478478
$t_bug_link = '<a class="subtle" href="' . config_get( 'bug_count_hyperlink_prefix' ) . '&amp;' . FILTER_PROPERTY_HANDLER_ID . '=' . $t_last_handler;
479479
if( 0 < $t_bugs_open ) {
@@ -510,7 +510,7 @@ function summary_print_by_developer() {
510510
}
511511

512512
if( 0 < $t_bugs_total ) {
513-
$t_user = string_display_line( user_get_name( $t_last_handler ) );
513+
$t_user = summary_helper_get_developer_label( $t_last_handler );
514514

515515
$t_bug_link = '<a class="subtle" href="' . config_get( 'bug_count_hyperlink_prefix' ) . '&amp;' . FILTER_PROPERTY_HANDLER_ID . '=' . $t_last_handler;
516516
if( 0 < $t_bugs_open ) {

0 commit comments

Comments
 (0)