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:
mdtrooper 2013-10-07 12:45:17 +00:00
parent 3f808ce9b5
commit 6edf7d0707
3 changed files with 10 additions and 2 deletions

View File

@ -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> 2013-10-07 Miguel de Dios <miguel.dedios@artica.es>
* godmode/agentes/modificar_agente.php: fixed the align of bottom * godmode/agentes/modificar_agente.php: fixed the align of bottom

View File

@ -183,7 +183,7 @@ $(document).ready (function () {
{"page" : "godmode/massive/massive_add_alerts", {"page" : "godmode/massive/massive_add_alerts",
"get_agents" : 1, "get_agents" : 1,
"id_group" : this.value, "id_group" : this.value,
"recursion" : $("#checkbox-recursion").attr("checked") ? 1 : 0 "recursion" : $("#checkbox-recursion").is(":checked") ? 1 : 0
}, },
function (data, status) { function (data, status) {
options = ""; options = "";

View File

@ -251,7 +251,7 @@ $(document).ready (function () {
{"page" : "godmode/massive/massive_delete_alerts", {"page" : "godmode/massive/massive_delete_alerts",
"get_agents" : 1, "get_agents" : 1,
"id_group" : this.value, "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() "id_alert_template" : $("#id_alert_template").val()
}, },
function (data, status) { function (data, status) {