Skip to content

Commit 3ca8a16

Browse files
committedSep 22, 2012
Make all developer names links
Fixes #14677: Summary: developer names should be links
1 parent 925af0a commit 3ca8a16

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
@@ -29,7 +29,7 @@
2929

3030
function summary_helper_print_row( $p_label, $p_open, $p_resolved, $p_closed, $p_total ) {
3131
printf( '<tr %s>', helper_alternate_class() );
32-
printf( '<td width="50%%">%s</td>', string_display_line( $p_label ) );
32+
printf( '<td width="50%%">%s</td>', $p_label );
3333
printf( '<td width="12%%" class="right">%s</td>', $p_open );
3434
printf( '<td width="12%%" class="right">%s</td>', $p_resolved );
3535
printf( '<td width="12%%" class="right">%s</td>', $p_closed );
@@ -448,7 +448,7 @@ function summary_print_by_developer() {
448448
$v_bugcount = $row['bugcount'];
449449

450450
if(( $v_handler_id != $t_last_handler ) && ( -1 != $t_last_handler ) ) {
451-
$t_user = string_display_line( user_get_name( $t_last_handler ) );
451+
$t_user = summary_helper_get_developer_label( $t_last_handler );
452452

453453
$t_bug_link = '<a class="subtle" href="' . config_get( 'bug_count_hyperlink_prefix' ) . '&amp;' . FILTER_PROPERTY_HANDLER_ID . '=' . $t_last_handler;
454454
if( 0 < $t_bugs_open ) {
@@ -485,7 +485,7 @@ function summary_print_by_developer() {
485485
}
486486

487487
if( 0 < $t_bugs_total ) {
488-
$t_user = string_display_line( user_get_name( $t_last_handler ) );
488+
$t_user = summary_helper_get_developer_label( $t_last_handler );
489489

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

0 commit comments

Comments
 (0)