1
0
mirror of https://github.com/e107inc/e107.git synced 2025-05-05 03:38:29 +02:00

Fix for isHtml()

This commit is contained in:
Cameron 2019-02-14 14:57:05 -08:00
parent db849f9fd7
commit bf0d60a15c

View File

@ -4517,7 +4517,7 @@ class e_parser
function isHtml($text) function isHtml($text)
{ {
if(strpos($text,'[html]')) if(strpos($text,'[html]') !==false)
{ {
return true; return true;
} }