Merge branch 'ent-2620-no-se-puede-acceder-graficas-de-modulo-desde-la-meta' into 'develop'

Fixed agents_get_agentmodule_group to search only in tagente table

See merge request artica/pandorafms!1675
This commit is contained in:
vgilc 2018-08-10 13:10:14 +02:00
commit fd1811bee6
1 changed files with 1 additions and 2 deletions

View File

@ -2023,8 +2023,7 @@ function agents_get_agentmodule_group ($id_module) {
* @return int The group id
*/
function agents_get_agent_group ($id_agent) {
$table = is_metaconsole() ? "tmetaconsole_agent" : "tagente";
return (int) db_get_value ('id_grupo', $table, 'id_agente', (int) $id_agent);
return (int) db_get_value ('id_grupo', "tagente", 'id_agente', (int) $id_agent);
}
/**