From f423ddc42f247df902d70aaed2374abfae3f3079 Mon Sep 17 00:00:00 2001 From: alejandro-campos Date: Fri, 30 Aug 2019 09:42:58 +0200 Subject: [PATCH] modified function to export audit csv to decode entities as separator --- 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 461f1d27bc..fa42a8610c 100644 --- a/pandora_console/include/functions.php +++ b/pandora_console/include/functions.php @@ -2852,7 +2852,7 @@ function print_audit_csv($data) global $config; global $graphic_type; - $divider = $config['csv_divider']; + $divider = html_entity_decode($config['csv_divider']); if (!$data) { echo __('No data found to export');