Skip to content

Bootstrap loading breaks in 1.12.12 #9

@shaneiseminger

Description

@shaneiseminger

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

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions