Skip to content
Snippets Groups Projects
Commit 6332fd73 authored by Tim van Dijen's avatar Tim van Dijen
Browse files

Fix missing backspace

parent cbc727ce
No related branches found
No related tags found
No related merge requests found
...@@ -104,8 +104,8 @@ function sspmodAutoloadPSR0($className) ...@@ -104,8 +104,8 @@ function sspmodAutoloadPSR0($className)
if (!class_exists($className, false) && !interface_exists($className, false)) { if (!class_exists($className, false) && !interface_exists($className, false)) {
// the file exists, but the class is not defined. Is it using namespaces? // the file exists, but the class is not defined. Is it using namespaces?
$nspath = join('\\', $path); $nspath = join('\\', $path);
if (class_exists('SimpleSAML\Module\\'.$module.'\\'.$nspath) || if (class_exists('SimpleSAML\\Module\\'.$module.'\\'.$nspath) ||
interface_exists('SimpleSAML\Module\\'.$module.'\\'.$nspath) interface_exists('SimpleSAML\\Module\\'.$module.'\\'.$nspath)
) { ) {
// the class has been migrated, create an alias and warn about it // the class has been migrated, create an alias and warn about it
\SimpleSAML\Logger::warning( \SimpleSAML\Logger::warning(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment