diff --git a/pandora_console/include/api.php b/pandora_console/include/api.php index 589ce3a046..0db9f16d9a 100644 --- a/pandora_console/include/api.php +++ b/pandora_console/include/api.php @@ -113,7 +113,7 @@ if ($correctLogin) { $id_os = db_get_value_sql('select id_os from tagente where id_agente = '.$id); - if ($id_os === 100) { + if ($id_os == 100) { returnError('not_allowed_operation_cluster', $returnType); return false; } @@ -129,7 +129,7 @@ if ($correctLogin) { $id_os = db_get_value_sql('select id_os from tagente where nombre = "'.$id.'"'); - if ($id_os === 100) { + if ($id_os == 100) { returnError('not_allowed_operation_cluster', $returnType); return false; } @@ -142,7 +142,7 @@ if ($correctLogin) { $id_os = db_get_value_sql('select id_os from tagente where id_agente = (select id_agente from tagente_modulo where id_agente_modulo ='.$id.')'); - if ($id_os === 100) { + if ($id_os == 100) { returnError('not_allowed_operation_cluster', $returnType); return false; } @@ -151,7 +151,7 @@ if ($correctLogin) { case 'get_info_user_name': $id_os = get_info_user_name($type, $user); - if ($id_os === 100) { + if ($id_os == 100) { returnError('not_allowed_operation_cluster', $returnType); return false; }