2012-02-21 Junichi Satoh <junichi@rworks.jp>
* mobile/operation/agents/view_alerts.php: Fixed sql query error. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@5624 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
fab2cefad5
commit
2b4a28b8ce
|
@ -1,3 +1,7 @@
|
||||||
|
2012-02-21 Junichi Satoh <junichi@rworks.jp>
|
||||||
|
|
||||||
|
* mobile/operation/agents/view_alerts.php: Fixed sql query error.
|
||||||
|
|
||||||
2012-02-20 Vanessa Gil <vanessa.gil@artica.es>
|
2012-02-20 Vanessa Gil <vanessa.gil@artica.es>
|
||||||
* pandoradb.sql
|
* pandoradb.sql
|
||||||
pandoradb.oracle.sql
|
pandoradb.oracle.sql
|
||||||
|
|
|
@ -47,8 +47,9 @@ class ViewAlerts {
|
||||||
$groups = users_get_groups($this->system->getConfig('id_user'));
|
$groups = users_get_groups($this->system->getConfig('id_user'));
|
||||||
$idGroups = array_keys($groups);
|
$idGroups = array_keys($groups);
|
||||||
$agents = agents_get_group_agents($idGroups);
|
$agents = agents_get_group_agents($idGroups);
|
||||||
|
$idAgents = array_keys($agents);
|
||||||
|
|
||||||
$alertsSimple = agents_get_alerts_simple($agents);
|
$alertsSimple = agents_get_alerts_simple($idAgents);
|
||||||
|
|
||||||
$rowPair = false;
|
$rowPair = false;
|
||||||
$iterator = 0;
|
$iterator = 0;
|
||||||
|
|
Loading…
Reference in New Issue