From bf0d60a15c1ba0676524e9ff5de8521522aba246 Mon Sep 17 00:00:00 2001 From: Cameron Date: Thu, 14 Feb 2019 14:57:05 -0800 Subject: [PATCH] Fix for isHtml() --- e107_handlers/e_parse_class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e107_handlers/e_parse_class.php b/e107_handlers/e_parse_class.php index d0966885c..f9d2b6bc5 100644 --- a/e107_handlers/e_parse_class.php +++ b/e107_handlers/e_parse_class.php @@ -4517,7 +4517,7 @@ class e_parser function isHtml($text) { - if(strpos($text,'[html]')) + if(strpos($text,'[html]') !==false) { return true; }