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 --- plugins/af_comics/init.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'plugins/af_comics/init.php') diff --git a/plugins/af_comics/init.php b/plugins/af_comics/init.php index d07220894..c99d4b1d8 100755 --- a/plugins/af_comics/init.php +++ b/plugins/af_comics/init.php @@ -27,7 +27,7 @@ class Af_Comics extends Plugin { foreach ($filters as $file) { $filter_name = preg_replace("/\..*$/", "", basename($file)); - if (array_search($filter_name, $names) === FALSE) { + if (array_search($filter_name, $names) === false) { if (!class_exists($filter_name)) { require_once $file; } -- cgit v1.2.3-54-g00ecf