Skip to content
Snippets Groups Projects
Commit 2c880402 authored by Demian Katz's avatar Demian Katz
Browse files

Workaround for "Cannot redeclare class" PEAR bug.

parent 14981406
Branches
Tags
No related merge requests found
...@@ -25,6 +25,14 @@ defined('LOCAL_OVERRIDE_DIR') ...@@ -25,6 +25,14 @@ defined('LOCAL_OVERRIDE_DIR')
chdir(APPLICATION_PATH); chdir(APPLICATION_PATH);
// Ensure vendor/ is on include_path; some PEAR components may not load correctly
// otherwise (i.e. File_MARC may cause a "Cannot redeclare class" error by pulling
// from the shared PEAR directory instead of the local copy):
$pathParts = array();
$pathParts[] = APPLICATION_PATH . '/vendor';
$pathParts[] = get_include_path();
set_include_path(implode(PATH_SEPARATOR, $pathParts));
// Composer autoloading // Composer autoloading
if (file_exists('vendor/autoload.php')) { if (file_exists('vendor/autoload.php')) {
$loader = include 'vendor/autoload.php'; $loader = include 'vendor/autoload.php';
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment