From a8f460b4d5d171ea1b0cc5a32ecfeb0ecbf9fcf9 Mon Sep 17 00:00:00 2001 From: Roland Becker Date: Sat, 29 Sep 2018 11:19:07 +0200 Subject: [PATCH] Fix XSS in manage_filter_page.php Fixes #24813 --- manage_filter_page.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/manage_filter_page.php b/manage_filter_page.php index f215741f8..4732a579a 100644 --- a/manage_filter_page.php +++ b/manage_filter_page.php @@ -103,7 +103,7 @@ function table_print_filter_row( $p_filter_id ) { echo ''; } # Project - echo '' . project_get_name( filter_get_field( $p_filter_id, 'project_id' )) . ''; + echo '' . string_display_line( project_get_name( filter_get_field( $p_filter_id, 'project_id' ) ) ) . ''; # Public echo '' . trans_bool( filter_get_field( $p_filter_id, 'is_public' ) ) . ''; # Owner @@ -152,7 +152,7 @@ function table_print_filters( array $p_filter_array ) {

- +

-- 2.19.0