This commit is contained in:
Andreas Schamberger 2011-12-17 13:34:34 +01:00
parent baf6997e4b
commit 7fab5be555
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ spl_autoload_register(function($class) {
return true;
}
} elseif (0 === strpos($class, 'ass\XmlSecurity\\')) {
$path = __DIR__.'/../vendor/XmlSecurity/src/'.strtr($class, '\\', '/').'.php';
$path = __DIR__.'/../vendor/XmlSecurity/src/'.strtr($class, '\\', '/').'.php';
if (file_exists($path) && is_readable($path)) {
require_once $path;