2010-10-14 Junichi Satoh <junichi@rworks.jp>
* godmode/massive/massive_enable_disable_alerts.php, godmode/massive/massive_standby_alerts.php: Fixed alert listing is not affected by group selection. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@3394 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
a3f0288fe1
commit
413397b9e0
|
@ -1,3 +1,9 @@
|
||||||
|
2010-10-14 Junichi Satoh <junichi@rworks.jp>
|
||||||
|
|
||||||
|
* godmode/massive/massive_enable_disable_alerts.php,
|
||||||
|
godmode/massive/massive_standby_alerts.php: Fixed alert listing is not
|
||||||
|
affected by group selection.
|
||||||
|
|
||||||
2010-10-13 Sergio Martin <sergio.martin@artica.es>
|
2010-10-13 Sergio Martin <sergio.martin@artica.es>
|
||||||
|
|
||||||
* operation/agentes/ver_agente.php: Fixed a SQL
|
* operation/agentes/ver_agente.php: Fixed a SQL
|
||||||
|
|
|
@ -162,7 +162,7 @@ $(document).ready (function () {
|
||||||
jQuery.post ("ajax.php",
|
jQuery.post ("ajax.php",
|
||||||
{"page" : "godmode/massive/massive_enable_disable_alerts",
|
{"page" : "godmode/massive/massive_enable_disable_alerts",
|
||||||
"get_alerts" : 1,
|
"get_alerts" : 1,
|
||||||
"id_group" : this.value,
|
"id_group" : $("#id_group").attr("value"),
|
||||||
"id_alert_template" : $("#id_alert_template").attr("value"),
|
"id_alert_template" : $("#id_alert_template").attr("value"),
|
||||||
"disabled" : 0
|
"disabled" : 0
|
||||||
},
|
},
|
||||||
|
@ -181,7 +181,7 @@ $(document).ready (function () {
|
||||||
jQuery.post ("ajax.php",
|
jQuery.post ("ajax.php",
|
||||||
{"page" : "godmode/massive/massive_enable_disable_alerts",
|
{"page" : "godmode/massive/massive_enable_disable_alerts",
|
||||||
"get_alerts" : 1,
|
"get_alerts" : 1,
|
||||||
"id_group" : this.value,
|
"id_group" : $("#id_group").attr("value"),
|
||||||
"id_alert_template" : $("#id_alert_template").attr("value"),
|
"id_alert_template" : $("#id_alert_template").attr("value"),
|
||||||
"disabled" : 1
|
"disabled" : 1
|
||||||
},
|
},
|
||||||
|
|
|
@ -162,7 +162,7 @@ $(document).ready (function () {
|
||||||
jQuery.post ("ajax.php",
|
jQuery.post ("ajax.php",
|
||||||
{"page" : "godmode/massive/massive_standby_alerts",
|
{"page" : "godmode/massive/massive_standby_alerts",
|
||||||
"get_alerts" : 1,
|
"get_alerts" : 1,
|
||||||
"id_group" : this.value,
|
"id_group" : $("#id_group").attr("value"),
|
||||||
"id_alert_template" : $("#id_alert_template").attr("value"),
|
"id_alert_template" : $("#id_alert_template").attr("value"),
|
||||||
"standby" : 0
|
"standby" : 0
|
||||||
},
|
},
|
||||||
|
@ -181,7 +181,7 @@ $(document).ready (function () {
|
||||||
jQuery.post ("ajax.php",
|
jQuery.post ("ajax.php",
|
||||||
{"page" : "godmode/massive/massive_standby_alerts",
|
{"page" : "godmode/massive/massive_standby_alerts",
|
||||||
"get_alerts" : 1,
|
"get_alerts" : 1,
|
||||||
"id_group" : this.value,
|
"id_group" : $("#id_group").attr("value"),
|
||||||
"id_alert_template" : $("#id_alert_template").attr("value"),
|
"id_alert_template" : $("#id_alert_template").attr("value"),
|
||||||
"standby" : 1
|
"standby" : 1
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue