Skip to content

Commit

Permalink
Fix display of multiple users on advanced filter page
Browse files Browse the repository at this point in the history
Fixes #24899
  • Loading branch information
atrol committed Oct 26, 2018
1 parent 7357a35 commit 4ac6cf2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/filter_form_api.php
Expand Up @@ -256,7 +256,7 @@ function print_filter_values_user_monitor( array $p_filter ) {
} else if( true == $t_none_found ) {
echo lang_get( 'none' );
} else {
echo string_display_line( $t_output );
echo string_display( $t_output );
}
}
}
Expand Down Expand Up @@ -332,7 +332,7 @@ function print_filter_values_handler_id( array $p_filter ) {
if( true == $t_any_found ) {
echo lang_get( 'any' );
} else {
echo string_display_line( $t_output );
echo string_display( $t_output );
}
}
}
Expand Down

0 comments on commit 4ac6cf2

Please sign in to comment.