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); }