Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/ocs
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2016-10-06 13:13:02 +0300
committerJoas Schilling <coding@schilljs.com>2016-10-06 13:15:13 +0300
commitf3319f62949f873420d8ebe843b26cc66fc1314f (patch)
treeb98137f1e72f3a6b58bc2a44cb4e473ebe0686bb /ocs
parentff3e8c21397c79ac1231c4f16a8372908d79b067 (diff)
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.php2
-rw-r--r--ocs/v1.php2
-rw-r--r--ocs/v2.php2
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';