From 4a4acc57418ccc1259c8a177171787dcd36af8f8 Mon Sep 17 00:00:00 2001
From: Roland Becker <roland@atrol.de>
Date: Wed, 23 Jan 2013 12:45:18 +0100
Subject: [PATCH] Fix #15415 XSS vulnerability on Configuration Report page

---
 adm_config_report.php |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/adm_config_report.php b/adm_config_report.php
index 78b0a14..f5a512e 100644
--- a/adm_config_report.php
+++ b/adm_config_report.php
@@ -97,7 +97,7 @@
 		foreach( $p_array as $t_key => $t_value ) {
 			echo "<option value='$t_key'";
 			check_selected( $p_filter_value, $t_key );
-			echo ">$t_value</option>\n";
+			echo '>' . string_display_line( $t_value ) . '</option>' . "\n";
 		}
 	}
 
-- 
1.7.4.msysgit.0

