From 848e8f653ff3fada3d39e8f841ed34b4941b3621 Mon Sep 17 00:00:00 2001 From: Cameron Date: Sun, 29 Jan 2017 08:56:44 -0800 Subject: [PATCH] Updated example. --- e107_plugins/_blank/e_parse.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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; }