fixed broken bootstrap

This commit is contained in:
Andreas Schamberger 2012-01-29 17:46:39 +01:00
parent 02e8d450d5
commit 3954d07112
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ spl_autoload_register(function($class) {
return true;
}
} elseif (0 === strpos($class, 'BeSimple\SoapCommon\\')) {
$path = __DIR__.'/../../BeSimpleSoapCommon/src/'.($class = strtr($class, '\\', '/')).'.php';
$path = __DIR__.'/../vendor/besimple-soapcommon/src/'.($class = strtr($class, '\\', '/')).'.php';
if (file_exists($path) && is_readable($path)) {
require_once $path;