1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-20 06:51:28 +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

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