From e102d9ddc97891229de24558058e3d2fcb97502f Mon Sep 17 00:00:00 2001 From: Mark James Date: Fri, 16 Dec 2011 22:27:42 +0000 Subject: [PATCH] BUGFIX: Corrected use of ENT_QUOTES/UTF8 on htmlentities in installer introduced by r3a7ac9759ab8f98eee0bb15db4618fd0ee146ab6. fixes #6806 --- dev/install/install.php5 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev/install/install.php5 b/dev/install/install.php5 index 48599010e..262945a13 100644 --- a/dev/install/install.php5 +++ b/dev/install/install.php5 @@ -480,7 +480,7 @@ class InstallRequirements { $id = strtolower(str_replace(' ', '_', $section)); echo ""; foreach($tests as $test => $result) { - echo ""; + echo ""; } echo "
$test" . nl2br(htmlentities($result[1]), ENT_COMPAT, 'UTF-8') . "
$test" . nl2br(htmlentities($result[1], ENT_COMPAT, 'UTF-8')) . "
";