diff options
author | Joas Schilling <coding@schilljs.com> | 2016-10-06 12:13:02 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2016-10-06 12:15:13 +0200 |
commit | f3319f62949f873420d8ebe843b26cc66fc1314f (patch) | |
tree | b98137f1e72f3a6b58bc2a44cb4e473ebe0686bb /ocs | |
parent | ff3e8c21397c79ac1231c4f16a8372908d79b067 (diff) | |
download | nextcloud-server-f3319f62949f873420d8ebe843b26cc66fc1314f.tar.gz nextcloud-server-f3319f62949f873420d8ebe843b26cc66fc1314f.zip |
Allow to call the files even when you are in another instance atm
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'ocs')
-rw-r--r-- | ocs/providers.php | 2 | ||||
-rw-r--r-- | ocs/v1.php | 2 | ||||
-rw-r--r-- | ocs/v2.php | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/ocs/providers.php b/ocs/providers.php index be0aff8add2..9efca14768e 100644 --- a/ocs/providers.php +++ b/ocs/providers.php @@ -23,7 +23,7 @@ * */ -require_once '../lib/base.php'; +require_once __DIR__ . '/../lib/base.php'; header('Content-type: application/xml'); diff --git a/ocs/v1.php b/ocs/v1.php index 575b509b012..5aec27ad981 100644 --- a/ocs/v1.php +++ b/ocs/v1.php @@ -29,7 +29,7 @@ * */ -require_once '../lib/base.php'; +require_once __DIR__ . '/../lib/base.php'; if (\OCP\Util::needUpgrade() || \OC::$server->getSystemConfig()->getValue('maintenance', false) diff --git a/ocs/v2.php b/ocs/v2.php index 45f65033056..dc57431e6c6 100644 --- a/ocs/v2.php +++ b/ocs/v2.php @@ -20,4 +20,4 @@ * */ -require_once 'v1.php'; +require_once __DIR__ . '/v1.php'; |