Added the lost macro _agentgroup_

This commit is contained in:
mdtrooper 2014-10-21 14:33:25 +02:00
parent 2b890a7beb
commit 859818f8f2
1 changed files with 8 additions and 0 deletions

View File

@ -205,10 +205,18 @@ sub data_consumer ($$) {
}
};
# Get group info
my $group = undef;
if (defined ($agent)) {
$group = get_db_single_row ($dbh, 'SELECT * FROM tgrupo WHERE id_grupo = ?', $agent->{'id_grupo'});
}
# Agent and module macros
my %macros = (_agent_ => (defined ($agent)) ? $agent->{'nombre'} : '',
_agentdescription_ => (defined ($agent)) ? $agent->{'comentarios'} : '',
_agentstatus_ => undef,
_agentgroup_ => (defined ($group)) ? $group->{'nombre'} : '',
_address_ => (defined ($agent)) ? $agent->{'direccion'} : '',
_module_ => (defined ($module)) ? $module->{'nombre'} : '',
_modulegroup_ => undef,