From 5c70cb9fa659cc6ba0161696fadd9623d0053c49 Mon Sep 17 00:00:00 2001 From: Diego Najar Date: Tue, 23 Oct 2018 23:50:56 +0200 Subject: [PATCH] bug fix for #813 --- bl-kernel/pagex.class.php | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/bl-kernel/pagex.class.php b/bl-kernel/pagex.class.php index ed6b052c..07f68242 100644 --- a/bl-kernel/pagex.class.php +++ b/bl-kernel/pagex.class.php @@ -73,10 +73,7 @@ class Page { return $content; } - $contentRaw = $this->contentRaw(); - - // Parse pre code with htmlentities - $content = Text::pre2htmlentities($contentRaw); + $content = $this->contentRaw(); // Parse Markdown $parsedown = new Parsedown();