2011-02-15 Miguel de Dios <miguel.dedios@artica.es>

* godmode/alerts/alert_list.php: fixed the lost var in the audit.
	
	Fixes: #3182470



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@3857 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
mdtrooper 2011-02-15 16:46:34 +00:00
parent 40552af8f5
commit 3491d56a01
2 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,9 @@
2011-02-15 Miguel de Dios <miguel.dedios@artica.es>
* godmode/alerts/alert_list.php: fixed the lost var in the audit.
Fixes: #3182470
2011-02-15 Ramon Novoa <rnovoa@artica.es>
* pandoradb_data.sql, include/functions_alerts.php,

View File

@ -160,10 +160,10 @@ if ($delete_action) {
$result = delete_alert_agent_module_action ($id_action);
if ($result) {
pandora_audit("Alert management", 'Delete action ' . $id_action . ' in alert ' . $id_alert_module);
pandora_audit("Alert management", 'Delete action ' . $id_action . ' in alert ' . $id_alert);
}
else {
pandora_audit("Alert management", 'Fail to delete action ' . $id_action . ' in alert ' . $id_alert_module);
pandora_audit("Alert management", 'Fail to delete action ' . $id_action . ' in alert ' . $id_alert);
}
$messageAction = print_result_message ($result, __('Successfully deleted'), __('Could not be deleted'), '', true);