diff options
author | Jaime Perez Crespo <jaime.perez@uninett.no> | 2016-03-09 13:29:08 +0100 |
---|---|---|
committer | Jaime Perez Crespo <jaime.perez@uninett.no> | 2016-03-09 13:29:08 +0100 |
commit | 8b6abc0a5d0f954a2a982750581717c6c54f0514 (patch) | |
tree | 0a31d3b97bd5507f02b6a628e1365fdc1a2ee027 /lib/SimpleSAML/Module.php | |
parent | 7865bfd4f6db78580133ced5e7b56642263c77b3 (diff) | |
download | simplesamlphp-8b6abc0a5d0f954a2a982750581717c6c54f0514.zip simplesamlphp-8b6abc0a5d0f954a2a982750581717c6c54f0514.tar.gz simplesamlphp-8b6abc0a5d0f954a2a982750581717c6c54f0514.tar.bz2 |
Update the classes in lib/SimpleSAML/ too.
Diffstat (limited to 'lib/SimpleSAML/Module.php')
-rw-r--r-- | lib/SimpleSAML/Module.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/SimpleSAML/Module.php b/lib/SimpleSAML/Module.php index ef0d9d0..c9ff286 100644 --- a/lib/SimpleSAML/Module.php +++ b/lib/SimpleSAML/Module.php @@ -47,7 +47,7 @@ class Module $nspath = join('\\', $path); if (class_exists('SimpleSAML\Module\\'.$module.'\\'.$nspath)) { // the class has been migrated, create an alias and warn about it - \SimpleSAML_Logger::warning( + \SimpleSAML\Logger::warning( "The class '$className' is now using namespaces, please use 'SimpleSAML\\Module\\$module\\". "$nspath' instead." ); @@ -145,7 +145,7 @@ class Module !file_exists($moduleDir.'/default-enable') && !file_exists($moduleDir.'/default-disable') ) { - \SimpleSAML_Logger::error("Missing default-enable or default-disable file for the module $module"); + \SimpleSAML\Logger::error("Missing default-enable or default-disable file for the module $module"); } if (file_exists($moduleDir.'/enable')) { |