#11420 Fixed inventory

This commit is contained in:
Daniel Maya 2023-06-05 17:00:25 +02:00
parent 5fcb95280c
commit 73de090e60
1 changed files with 5 additions and 1 deletions

View File

@ -149,7 +149,11 @@ if (is_ajax() === true) {
$tmp->alias .= $server['server_name'].' » ';
}
$id = !empty($agent['id_agente']) ? $agent['id_agente'] : $agent['id_agent'];
if (is_metaconsole() === true) {
$id = !empty($agent['id_agente']) ? $agent['id_agente'] : $agent['id_tagente'];
} else {
$id = !empty($agent['id_agente']) ? $agent['id_agente'] : $agent['id_agent'];
}
$tmp->alias .= $agent['alias'];
$ip = '<em>'.__('N/A').'</em>';