2014-05-07 Ramon Novoa <rnovoa@artica.es>

* 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
This commit is contained in:
Ramon Novoa 2014-05-07 12:28:08 +00:00
parent 37e9906398
commit f7abc3096e
2 changed files with 8 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2014-05-07 Ramon Novoa <rnovoa@artica.es>
* lib/PandoraFMS/Tools.pm: Added code to initialize the enterprise module.
2014-05-06 Junichi Satoh <junichi@rworks.jp> 2014-05-06 Junichi Satoh <junichi@rworks.jp>
* lib/PandoraFMS/Core.pm: Improved weekly planned downtime to allow * lib/PandoraFMS/Core.pm: Improved weekly planned downtime to allow

View File

@ -489,6 +489,10 @@ sub enterprise_load ($) {
# Ops # Ops
return 0 if ($@); return 0 if ($@);
# Initialize the enterprise module.
PandoraFMS::Enterprise::init($pa_config);
return 1; return 1;
} }