Navigation Menu

Skip to content

Commit

Permalink
Display configured number of rows on summary page
Browse files Browse the repository at this point in the history
Fixes #21816
  • Loading branch information
atrol committed Oct 21, 2016
1 parent bb6cbac commit 8388df7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/summary_api.php
Expand Up @@ -969,7 +969,7 @@ function summary_print_reporter_resolution( $p_resolution_enum_string ) {
foreach( $t_reporter_bugcount_arr as $t_reporter_id => $t_total_user_bugs ) {

# Limit the number of reporters listed
if( $t_row_count > $t_reporter_summary_limit ) {
if( $t_row_count >= $t_reporter_summary_limit ) {
break;
}

Expand Down Expand Up @@ -1097,7 +1097,7 @@ function summary_print_reporter_effectiveness( $p_severity_enum_string, $p_resol
foreach( $t_reporter_bugcount_arr as $t_reporter_id => $t_total_user_bugs ) {

# Limit the number of reporters listed
if( $t_row_count > $t_reporter_summary_limit ) {
if( $t_row_count >= $t_reporter_summary_limit ) {
break;
}

Expand Down

0 comments on commit 8388df7

Please sign in to comment.