don't specify path to 3rdparty directory when registering Pimple autoloader
The core 3rdparty directory is in the include_path from lib/base.php anyway, so this is unnecessary, and causes problems for downstream distributors who unbundle Pimple.
This commit is contained in:
parent
760fa9ea30
commit
9b4a827e0b
|
@ -3,7 +3,7 @@
|
||||||
namespace OC\AppFramework\Utility;
|
namespace OC\AppFramework\Utility;
|
||||||
|
|
||||||
// register 3rdparty autoloaders
|
// register 3rdparty autoloaders
|
||||||
require_once __DIR__ . '/../../../../3rdparty/Pimple/Pimple.php';
|
require_once 'Pimple/Pimple.php';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class SimpleContainer
|
* Class SimpleContainer
|
||||||
|
|
Loading…
Reference in New Issue