From 4ea592a4efcb32c5ac7b5c638e2d4a0ad7cb3009 Mon Sep 17 00:00:00 2001 From: Jan Schneider Date: Sun, 14 Feb 2010 17:16:19 +0100 Subject: [PATCH] Decode html entities too in cli mode. --- framework/Core/lib/Horde.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/Core/lib/Horde.php b/framework/Core/lib/Horde.php index ba9cb9326..dff62ebc5 100644 --- a/framework/Core/lib/Horde.php +++ b/framework/Core/lib/Horde.php @@ -251,7 +251,7 @@ class Horde } if ($cli) { - echo strip_tags(str_replace(array('
', '

', '

', '

', '

', '

', '

'), "\n", $errortext)); + echo html_entity_decode(strip_tags(str_replace(array('
', '

', '

', '

', '

', '

', '

'), "\n", $errortext))); } else { echo <<< HTML -- 2.11.0