From 85b47df1fecbfe6d7d1a8feb1c42f7a3834ed937 Mon Sep 17 00:00:00 2001 From: mdtrooper Date: Thu, 16 Jul 2015 11:47:44 +0200 Subject: [PATCH] Fixed the xml reports with & in the values. --- pandora_console/include/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/include/functions.php b/pandora_console/include/functions.php index ef73eca18c..2622ffa0ef 100644 --- a/pandora_console/include/functions.php +++ b/pandora_console/include/functions.php @@ -2443,7 +2443,7 @@ function array2XML($data, $root = null, $xml = NULL) { } } - return html_entity_decode($xml->asXML()); + return $xml->asXML(); } /**