diff options
author | Bernhard Posselt <dev@bernhard-posselt.com> | 2014-04-12 01:33:21 +0200 |
---|---|---|
committer | Bernhard Posselt <dev@bernhard-posselt.com> | 2014-04-12 01:33:21 +0200 |
commit | 526100dc90511bb3f37115c02fd449234ff6105c (patch) | |
tree | a7a1ab05bc5335b47ddebf5aab21f44f01adf0fa | |
parent | 5b8c7a01e90a03687a209ed5f3bd419b095f4f66 (diff) | |
download | nextcloud-server-526100dc90511bb3f37115c02fd449234ff6105c.tar.gz nextcloud-server-526100dc90511bb3f37115c02fd449234ff6105c.zip |
be nice and use a relative import so people can use the class without firing up owncloud
-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 d08a4879e34..9197ec13853 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 'Pimple/Pimple.php'; +require_once __DIR__ . '/../../../../3rdparty/Pimple/Pimple.php'; /** * Class SimpleContainer |