From a8ef08a9f77718cc46b7d60691b191d47c4cb66d Mon Sep 17 00:00:00 2001 From: ramonn Date: Wed, 7 May 2014 12:28:08 +0000 Subject: [PATCH] 2014-05-07 Ramon Novoa * lib/PandoraFMS/Tools.pm: Added code to initialize the enterprise module. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@9877 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f --- pandora_server/ChangeLog | 4 ++++ pandora_server/lib/PandoraFMS/Tools.pm | 4 ++++ 2 files changed, 8 insertions(+) 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; }