1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-31 20:00:37 +02:00

Closes #700 - double html parser call breaking HTML

This commit is contained in:
SecretR
2014-07-09 17:55:57 +03:00
parent 7eff43d8dc
commit 965631d370

View File

@@ -795,7 +795,9 @@ class pageClass
}
else
{
$this->pageToRender = $tp->toHTML($this->pageText, TRUE, 'BODY');
// $this->pageToRender = $tp->toHTML($this->pageText, TRUE, 'BODY');
// Remove double parsing - it breaks HTML (inserts <br> as [html] is already removed)
$this->pageToRender = $this->pageText;
return;
}