diff --git a/e107_plugins/_blank/e_parse.php b/e107_plugins/_blank/e_parse.php index 2ca30fa61..193502a55 100644 --- a/e107_plugins/_blank/e_parse.php +++ b/e107_plugins/_blank/e_parse.php @@ -39,7 +39,7 @@ class _blank_parse */ function toHtml($text, $context='') { - $text = str_replace('****', '
', $text); + $text = str_replace('****', '
', $text); return $text; } @@ -54,7 +54,8 @@ class _blank_parse */ function toDB($text, $param=array()) { - $text = str_replace('
', '****', $text); + // e107::getDebug()->log($text); + $text = str_replace('
', '****', $text); return $text; }