From e515dfb43479532695c8ec5fd15cc4f104a1c19c Mon Sep 17 00:00:00 2001 From: Romain Quetiez Date: Thu, 25 Aug 2011 16:35:38 +0000 Subject: [PATCH] Cosmetics: regression due to an unnecessary protection against XSS attacks SVN:trunk[1519] --- setup/setuppage.class.inc.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/setup/setuppage.class.inc.php b/setup/setuppage.class.inc.php index c6e3b98be..06b5eaf37 100644 --- a/setup/setuppage.class.inc.php +++ b/setup/setuppage.class.inc.php @@ -174,25 +174,25 @@ h3.clickable.open { } public function info($sText) { - $this->add("

".htmlentities($sText, ENT_COMPAT, 'UTF-8')."

\n"); + $this->add("

$sText

\n"); $this->log_info($sText); } public function ok($sText) { - $this->add("

".htmlentities($sText, ENT_COMPAT, 'UTF-8')."

\n"); + $this->add("

$sText

\n"); $this->log_ok($sText); } public function warning($sText) { - $this->add("

".htmlentities($sText, ENT_COMPAT, 'UTF-8')."

\n"); + $this->add("

$sText

\n"); $this->log_warning($sText); } public function error($sText) { - $this->add("

".htmlentities($sText, ENT_COMPAT, 'UTF-8')."

\n"); + $this->add("

$sText

\n"); $this->log_error($sText); }