2011-06-16 Ramon Novoa <rnovoa@artica.es>

* lib/PandoraFMS/Core.pm: Fixed a typo.



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@4462 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
Ramon Novoa 2011-06-16 17:50:45 +00:00
parent 2676d688db
commit e30e1a34bd
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2011-06-16 Ramon Novoa <rnovoa@artica.es>
* lib/PandoraFMS/Core.pm: Fixed a typo.
2011-06-15 Koichiro Kikuchi <koichiro@rworks.jp>
* lib/PandoraFMS/Tools.pm: Added FreeBSD specific code to load_average()

View File

@ -756,7 +756,7 @@ sub pandora_execute_action ($$$$$$$$$;$) {
# Update action last execution date
if (defined ($action->{'last_execution'}) && defined ($action->{'id'})) {
db_do ($dbh, 'UPDATE talert_template_module_actions SET last_execution = ? WHERE id = ?', time (), $alert->{'id'});
db_do ($dbh, 'UPDATE talert_template_module_actions SET last_execution = ? WHERE id = ?', time (), $action->{'id'});
}
}