diff --git a/pandora_server/ChangeLog b/pandora_server/ChangeLog index 819030d01c..ee3e4306f5 100644 --- a/pandora_server/ChangeLog +++ b/pandora_server/ChangeLog @@ -1,3 +1,7 @@ +2014-05-07 Ramon Novoa + + * lib/PandoraFMS/Tools.pm: Added code to initialize the enterprise module. + 2014-05-06 Junichi Satoh * lib/PandoraFMS/Core.pm: Improved weekly planned downtime to allow diff --git a/pandora_server/lib/PandoraFMS/Tools.pm b/pandora_server/lib/PandoraFMS/Tools.pm index 73d2bbb1a8..708b8bc393 100644 --- a/pandora_server/lib/PandoraFMS/Tools.pm +++ b/pandora_server/lib/PandoraFMS/Tools.pm @@ -489,6 +489,10 @@ sub enterprise_load ($) { # Ops return 0 if ($@); + + # Initialize the enterprise module. + PandoraFMS::Enterprise::init($pa_config); + return 1; }