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; diff --git a/system/input.php b/system/input.php index dde5c93e4..a879a786b 100755 --- a/system/input.php +++ b/system/input.php @@ -56,13 +56,7 @@ public static function get($key, $fallback = null) return static::get_array($key, $fallback); } - $data = Arr::get(static::$array, $key, $fallback); - - if (is_string($data)) { - return e($data); - } - - return $data; + return Arr::get(static::$array, $key, $fallback); } /**