diff options
author | Adam Williamson <awilliam@redhat.com> | 2014-01-01 09:52:19 -0800 |
---|---|---|
committer | Adam Williamson <awilliam@redhat.com> | 2014-01-01 09:52:19 -0800 |
commit | 9b4a827e0bd9dc02fe7f2c9487fed21f50447ea0 (patch) | |
tree | 232ba01b2e49863107d49cb76ef70069b588dae6 /lib | |
parent | 760fa9ea3005e7df81a1fac54f207dbe7d8ef312 (diff) | |
download | nextcloud-server-9b4a827e0bd9dc02fe7f2c9487fed21f50447ea0.tar.gz nextcloud-server-9b4a827e0bd9dc02fe7f2c9487fed21f50447ea0.zip |
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.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/appframework/utility/simplecontainer.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/appframework/utility/simplecontainer.php b/lib/private/appframework/utility/simplecontainer.php index 7e4db63bde5..e631e657756 100644 --- a/lib/private/appframework/utility/simplecontainer.php +++ b/lib/private/appframework/utility/simplecontainer.php @@ -3,7 +3,7 @@ namespace OC\AppFramework\Utility; // register 3rdparty autoloaders -require_once __DIR__ . '/../../../../3rdparty/Pimple/Pimple.php'; +require_once 'Pimple/Pimple.php'; /** * Class SimpleContainer |