From 4ac6cf238475009768cab86be22d7f88adad6619 Mon Sep 17 00:00:00 2001 From: Roland Becker Date: Fri, 26 Oct 2018 21:09:42 +0200 Subject: [PATCH] Fix display of multiple users on advanced filter page Fixes #24899 --- core/filter_form_api.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/filter_form_api.php b/core/filter_form_api.php index 3556798b59..39e9bc54df 100644 --- a/core/filter_form_api.php +++ b/core/filter_form_api.php @@ -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 ); } } } @@ -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 ); } } }