Skip to content
Snippets Groups Projects
Commit 0fc3f8a7 authored by Olav Morken's avatar Olav Morken
Browse files

Ensure that config.php is optional for module loading.

Currently, if we try to load a class from a module, and the config.php
is absent, we will get an error about the missing configuration file.

There is no reason for the configuration file to be mandatory here,
since we have reasonable fallbacks, so fix the code to make it
optional.

This should make it easier to write tests for code in modules.
parent 33ceceaa
No related branches found
No related tags found
No related merge requests found
...@@ -41,7 +41,7 @@ class SimpleSAML_Module { ...@@ -41,7 +41,7 @@ class SimpleSAML_Module {
return FALSE; return FALSE;
} }
$globalConfig = SimpleSAML_Configuration::getInstance(); $globalConfig = SimpleSAML_Configuration::getOptionalConfig();
$moduleEnable = $globalConfig->getArray('module.enable', array()); $moduleEnable = $globalConfig->getArray('module.enable', array());
if(isset($moduleEnable[$module])) { if(isset($moduleEnable[$module])) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment