2013-10-07 Miguel de Dios <miguel.dedios@artica.es>
* godmode/massive/massive_delete_alerts.php, godmode/massive/massive_add_alerts.php: fixed the get agents in the groups with subgroups and enabled "Group recursion". Fixes: #2393 git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@8864 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
3f808ce9b5
commit
6edf7d0707
|
@ -1,3 +1,11 @@
|
|||
2013-10-07 Miguel de Dios <miguel.dedios@artica.es>
|
||||
|
||||
* godmode/massive/massive_delete_alerts.php,
|
||||
godmode/massive/massive_add_alerts.php: fixed the get agents in
|
||||
the groups with subgroups and enabled "Group recursion".
|
||||
|
||||
Fixes: #2393
|
||||
|
||||
2013-10-07 Miguel de Dios <miguel.dedios@artica.es>
|
||||
|
||||
* godmode/agentes/modificar_agente.php: fixed the align of bottom
|
||||
|
|
|
@ -183,7 +183,7 @@ $(document).ready (function () {
|
|||
{"page" : "godmode/massive/massive_add_alerts",
|
||||
"get_agents" : 1,
|
||||
"id_group" : this.value,
|
||||
"recursion" : $("#checkbox-recursion").attr("checked") ? 1 : 0
|
||||
"recursion" : $("#checkbox-recursion").is(":checked") ? 1 : 0
|
||||
},
|
||||
function (data, status) {
|
||||
options = "";
|
||||
|
|
|
@ -251,7 +251,7 @@ $(document).ready (function () {
|
|||
{"page" : "godmode/massive/massive_delete_alerts",
|
||||
"get_agents" : 1,
|
||||
"id_group" : this.value,
|
||||
"recursion" : $("#checkbox-recursion").attr ("checked") ? 1 : 0,
|
||||
"recursion" : $("#checkbox-recursion").is(":checked") ? 1 : 0,
|
||||
"id_alert_template" : $("#id_alert_template").val()
|
||||
},
|
||||
function (data, status) {
|
||||
|
|
Loading…
Reference in New Issue