From 7cc618c52a7ee0fd7f7b639a9851a3c89f36470f Mon Sep 17 00:00:00 2001 From: Gerrit0 Date: Mon, 6 Jun 2016 15:45:12 -0600 Subject: [PATCH] Remove extra decoding of input No longer needed as the e() call was removed from Input::get --- anchor/helpers.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/anchor/helpers.php b/anchor/helpers.php index 1ef739bd9..e6a652f96 100755 --- a/anchor/helpers.php +++ b/anchor/helpers.php @@ -47,8 +47,6 @@ function parse($str, $markdown = true) $str = str_replace($search, $replace, $str); } - $str = html_entity_decode($str, ENT_NOQUOTES, System\Config::app('encoding')); - // Parse Markdown as well? if ($markdown === true) { $md = new Parsedown;