diff --git a/src/server/cyberhex-code/system/secure_zone/php/view_log.php b/src/server/cyberhex-code/system/secure_zone/php/view_log.php index 0f6c181..3beb61f 100644 --- a/src/server/cyberhex-code/system/secure_zone/php/view_log.php +++ b/src/server/cyberhex-code/system/secure_zone/php/view_log.php @@ -147,11 +147,11 @@ if($perms[2]!=="1"){ $show=false; } }if(isset($_GET["logtext"]) && $_GET["logtext"]!==""){ - if(!stripos($logtext,$_GET["logtext"])){ + if(stripos($logtext,$_GET["logtext"])===false){ $show=false; } }if(isset($_GET["machine_id"]) && $_GET["machine_id"]!==""){ - if(!stripos($machine_id,$_GET["machine_id"])){ + if(stripos($machine_id,$_GET["machine_id"])===false){ $show=false; } }