From 93a4d92a72de0bcece91615f23f3edad8c8551d7 Mon Sep 17 00:00:00 2001 From: Jose Gonzalez Date: Mon, 18 Jan 2021 14:56:36 +0100 Subject: [PATCH] Modified line for solve linter error --- pandora_console/include/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/include/functions.php b/pandora_console/include/functions.php index 6166eeea60..e2b466008d 100644 --- a/pandora_console/include/functions.php +++ b/pandora_console/include/functions.php @@ -1798,7 +1798,7 @@ function is_ajax() */ function is_error($code) { - if ($code !== true and ($code <= ERR_GENERIC || $code === false)) { + if ($code !== true && ($code <= ERR_GENERIC || $code === false)) { return true; } else { return false;