Bug #20496 ยป 0011176.patch
t3lib/class.t3lib_autoloader.php (Arbeitskopie) | ||
---|---|---|
if ($classPath && file_exists($classPath)) {
|
||
t3lib_div::requireFile($classPath);
|
||
} else {
|
||
spl_autoload($className);
|
||
try {
|
||
spl_autoload($className);
|
||
} catch (LogicException $exception) {
|
||
}
|
||
}
|
||
if (!class_exists($className, false)) {
|