Fixed get_cluster_status

This commit is contained in:
fbsanchez 2018-06-20 12:20:34 +02:00
parent ed5381ec69
commit 1f06a15d7c
1 changed files with 3 additions and 3 deletions

View File

@ -11349,9 +11349,9 @@ function api_get_cluster_status($id_cluster, $trash1, $trash2, $returnType) {
return; return;
} }
$sql = 'select estado from tagente_estado INNER JOIN tagente_modulo ON tagente_estado.id_agente_modulo = tagente_modulo.id_agente_modulo ' $sql = 'select ae.estado from tagente_estado ae, tagente_modulo tam, tcluster tc'
. ' and tagente_modulo.nombre = "' . io_safe_input("Cluster status") . '" ' . ' where tam.id_agente=tc.id_agent and ae.id_agente_modulo=tam.id_agente_modulo '
. ' and tagente_modulo.id_agente = (select id_agent from tcluster where id = ".$id_cluster.")'; . ' and tc.id=' . $id_cluster . ' and tam.nombre = "' . io_safe_input("Cluster status") . '" ';
$value = db_get_value_sql($sql); $value = db_get_value_sql($sql);