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
aa653d935a
commit
e96094c81a
|
@ -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>
|
||||
|
||||
* operation/agentes/ver_agente.php: Fixed a SQL
|
||||
|
|
|
@ -162,7 +162,7 @@ $(document).ready (function () {
|
|||
jQuery.post ("ajax.php",
|
||||
{"page" : "godmode/massive/massive_enable_disable_alerts",
|
||||
"get_alerts" : 1,
|
||||
"id_group" : this.value,
|
||||
"id_group" : $("#id_group").attr("value"),
|
||||
"id_alert_template" : $("#id_alert_template").attr("value"),
|
||||
"disabled" : 0
|
||||
},
|
||||
|
@ -181,7 +181,7 @@ $(document).ready (function () {
|
|||
jQuery.post ("ajax.php",
|
||||
{"page" : "godmode/massive/massive_enable_disable_alerts",
|
||||
"get_alerts" : 1,
|
||||
"id_group" : this.value,
|
||||
"id_group" : $("#id_group").attr("value"),
|
||||
"id_alert_template" : $("#id_alert_template").attr("value"),
|
||||
"disabled" : 1
|
||||
},
|
||||
|
|
|
@ -162,7 +162,7 @@ $(document).ready (function () {
|
|||
jQuery.post ("ajax.php",
|
||||
{"page" : "godmode/massive/massive_standby_alerts",
|
||||
"get_alerts" : 1,
|
||||
"id_group" : this.value,
|
||||
"id_group" : $("#id_group").attr("value"),
|
||||
"id_alert_template" : $("#id_alert_template").attr("value"),
|
||||
"standby" : 0
|
||||
},
|
||||
|
@ -181,7 +181,7 @@ $(document).ready (function () {
|
|||
jQuery.post ("ajax.php",
|
||||
{"page" : "godmode/massive/massive_standby_alerts",
|
||||
"get_alerts" : 1,
|
||||
"id_group" : this.value,
|
||||
"id_group" : $("#id_group").attr("value"),
|
||||
"id_alert_template" : $("#id_alert_template").attr("value"),
|
||||
"standby" : 1
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue