1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-27 00:23:00 +00:00

replace FALSE with false so that static analyzer shuts up about it

This commit is contained in:
Andrew Dolgov
2020-09-17 19:02:27 +03:00
parent 57fac84516
commit a4525d31b2
29 changed files with 63 additions and 63 deletions

View File

@@ -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;
}