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_unburn/init.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'plugins/af_unburn/init.php') diff --git a/plugins/af_unburn/init.php b/plugins/af_unburn/init.php index bfd0f66e1..d867e83be 100755 --- a/plugins/af_unburn/init.php +++ b/plugins/af_unburn/init.php @@ -24,9 +24,9 @@ class Af_Unburn extends Plugin { if (defined('NO_CURL') || !function_exists("curl_init") || ini_get("open_basedir")) return $article; - if ((strpos($article["link"], "feedproxy.google.com") !== FALSE || - strpos($article["link"], "/~r/") !== FALSE || - strpos($article["link"], "feedsportal.com") !== FALSE)) { + if ((strpos($article["link"], "feedproxy.google.com") !== false || + strpos($article["link"], "/~r/") !== false || + strpos($article["link"], "feedsportal.com") !== false)) { $ch = curl_init($article["link"]); @@ -52,7 +52,7 @@ class Af_Unburn extends Plugin { $query = parse_url($real_url, PHP_URL_QUERY); - if ($query && strpos($query, "utm_source") !== FALSE) { + if ($query && strpos($query, "utm_source") !== false) { $args = array(); parse_str($query, $args); -- cgit v1.2.3