-
Notifications
You must be signed in to change notification settings - Fork 16
Closed
Description
We get a "Bootstrap class not found" exception after updating to 1.12.12. It seems that there's one require_once() call that should remain active on line 333 of Zend_Application.
if (!class_exists($class, false)) {
// require_once $path;
if (!class_exists($class, false)) {
throw new Zend_Application_Exception(
'Bootstrap class not found'
);
}
}
Disabling this require_once() call makes Zend_Application unable to load the Bootstrap class specified by the bootstrap.class and bootstrap.path config options. To the best of my knowledge the autoloader isn't intended to handle the bootstrap class.
Metadata
Metadata
Assignees
Labels
No labels