From 72e1a8d83b3a21875cac6948879471661d120c52 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Thomas=20M=C3=BCller?= <thomas.mueller@tmit.eu>
Date: Tue, 20 Aug 2013 12:47:23 +0200
Subject: [PATCH] fixing require to Pimple

---
 lib/appframework/dependencyinjection/dicontainer.php | 2 +-
 tests/lib/appframework/AppTest.php                   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/appframework/dependencyinjection/dicontainer.php b/lib/appframework/dependencyinjection/dicontainer.php
index 34f64e72cb..d6cf4d5502 100644
--- a/lib/appframework/dependencyinjection/dicontainer.php
+++ b/lib/appframework/dependencyinjection/dicontainer.php
@@ -34,7 +34,7 @@ use OC\AppFramework\Middleware\Security\SecurityMiddleware;
 use OC\AppFramework\Utility\TimeFactory;
 
 // register 3rdparty autoloaders
-require_once __DIR__ . '/../../../../3rdparty/Pimple/Pimple.php';
+require_once __DIR__ . '/../../../3rdparty/Pimple/Pimple.php';
 
 
 /**
diff --git a/tests/lib/appframework/AppTest.php b/tests/lib/appframework/AppTest.php
index 000094d07c..6e647f68e6 100644
--- a/tests/lib/appframework/AppTest.php
+++ b/tests/lib/appframework/AppTest.php
@@ -29,7 +29,7 @@ use OC\AppFramework\Core\API;
 use OC\AppFramework\Middleware\MiddlewareDispatcher;
 
 // FIXME: loading pimpl correctly from 3rdparty repo
-require_once __DIR__ . '/../../../../3rdparty/Pimple/Pimple.php';
+require_once __DIR__ . '/../../../3rdparty/Pimple/Pimple.php';
 require_once __DIR__ . "/classloader.php";
 
 
-- 
GitLab