Skip to content
Snippets Groups Projects
Commit 9b4a827e authored by Adam Williamson's avatar Adam Williamson
Browse files

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.
parent 760fa9ea
No related branches found
No related tags found
No related merge requests found
...@@ -3,7 +3,7 @@ ...@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment