From a4525d31b2536bc8ad9da013f4ed5168fac87d0a Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Thu, 17 Sep 2020 19:02:27 +0300 Subject: replace FALSE with false so that static analyzer shuts up about it --- classes/templator.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'classes/templator.php') diff --git a/classes/templator.php b/classes/templator.php index 3d270f837..b682f8b82 100644 --- a/classes/templator.php +++ b/classes/templator.php @@ -5,7 +5,7 @@ class Templator extends MiniTemplator { /* this reads tt-rss template from templates.local/ or templates/ if only base filename is given */ function readTemplateFromFile ($fileName) { - if (strpos($fileName, "/") === FALSE) { + if (strpos($fileName, "/") === false) { $fileName = basename($fileName); -- cgit v1.2.3