2010-12-22 Ramon Novoa <rnovoa@artica.es>
* lib/PandoraFMS/Core.pm: Fixed day name array. 0 corresponds to Sunday. Fixes bug #3122177. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@3682 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
5e0b347e01
commit
37a6eef2f9
|
@ -1,3 +1,8 @@
|
|||
2010-12-22 Ramon Novoa <rnovoa@artica.es>
|
||||
|
||||
* lib/PandoraFMS/Core.pm: Fixed day name array. 0 corresponds
|
||||
to Sunday. Fixes bug #3122177.
|
||||
|
||||
2010-12-22 Sergio Martin <sergio.martin@artica.es>
|
||||
|
||||
* util/pandora_manage.pl: Fixed codification bug in the
|
||||
|
|
|
@ -163,7 +163,7 @@ our @EXPORT = qw(
|
|||
);
|
||||
|
||||
# Some global variables
|
||||
our @DayNames = qw(monday tuesday wednesday thursday friday saturday sunday);
|
||||
our @DayNames = qw(sunday monday tuesday wednesday thursday friday saturday);
|
||||
our @ServerTypes = qw (dataserver networkserver snmpconsole reconserver pluginserver predictionserver wmiserver exportserver inventoryserver webserver);
|
||||
our @AlertStatus = ('Execute the alert', 'Do not execute the alert', 'Do not execute the alert, but increment its internal counter', 'Cease the alert', 'Recover the alert', 'Reset internal counter');
|
||||
|
||||
|
|
Loading…
Reference in New Issue