From 186d363adbd1e64549a32b1bd1f0f02c1b0f88aa Mon Sep 17 00:00:00 2001 From: ramonn Date: Mon, 20 Dec 2010 17:51:37 +0000 Subject: [PATCH] 2010-12-20 Ramon Novoa * general/logon_ok.php: Decode HTML entities in session information comments. Fixes bug #3139032. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@3670 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f --- pandora_console/ChangeLog | 5 +++++ pandora_console/general/logon_ok.php | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index ab3358e6f1..0a297b6c60 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,8 @@ +2010-12-20 Ramon Novoa + + * general/logon_ok.php: Decode HTML entities in session + information comments. Fixes bug #3139032. + 2010-12-20 Ramon Novoa * godmode/reporting/graph_builder.preview.php: Fixed a typo. diff --git a/pandora_console/general/logon_ok.php b/pandora_console/general/logon_ok.php index 6e7fc54f2b..9c5e3b7e76 100644 --- a/pandora_console/general/logon_ok.php +++ b/pandora_console/general/logon_ok.php @@ -168,7 +168,7 @@ foreach ($sessions as $session) { $data[1] = $session['accion']; $data[2] = $session['fecha']; $data[3] = $session['ip_origen']; - $data[4] = $session['descripcion']; + $data[4] = safe_output ($session['descripcion']); array_push ($table->data, $data); }