]> source.dussan.org Git - nextcloud-server.git/commitdiff
Allow to call the files even when you are in another instance atm 1686/head
authorJoas Schilling <coding@schilljs.com>
Thu, 6 Oct 2016 10:13:02 +0000 (12:13 +0200)
committerJoas Schilling <coding@schilljs.com>
Tue, 11 Oct 2016 07:45:05 +0000 (09:45 +0200)
Signed-off-by: Joas Schilling <coding@schilljs.com>
console.php
cron.php
index.php
ocs-provider/index.php
ocs/providers.php
ocs/v1.php
ocs/v2.php
public.php
remote.php
status.php

index 8765b176ac77e9454a6db75ef1921c269d85e120..3c68429cbd49969382f618a83dd6159e7de2e428 100644 (file)
@@ -45,7 +45,7 @@ function exceptionHandler($exception) {
        exit(1);
 }
 try {
-       require_once 'lib/base.php';
+       require_once __DIR__ . '/lib/base.php';
 
        // set to run indefinitely if needed
        set_time_limit(0);
index 68f6a5552d88bbfdef1a0758f06742363fbed41d..a4d2bb8692c531c927763d26c77a13225e47a5ac 100644 (file)
--- a/cron.php
+++ b/cron.php
@@ -32,7 +32,7 @@
 
 try {
 
-       require_once 'lib/base.php';
+       require_once __DIR__ . '/lib/base.php';
 
        if (\OCP\Util::needUpgrade()) {
                \OCP\Util::writeLog('cron', 'Update required, skipping cron', \OCP\Util::DEBUG);
index 26fc18f3aab4def295b0e67efc315872ccefb36e..e72d38cd768e1632e953447ab87d1d881f870240 100644 (file)
--- a/index.php
+++ b/index.php
@@ -42,8 +42,8 @@ if (version_compare(PHP_VERSION, '7.1.0') !== -1) {
 }
 
 try {
-       
-       require_once 'lib/base.php';
+
+       require_once __DIR__ . '/lib/base.php';
 
        OC::handleRequest();
 
index 20e27e38ce7e3dab984f1e104e22fbc4277df08f..13dfa0b37791325f7b1b3aaec8e15d9b9a047175 100644 (file)
@@ -19,7 +19,7 @@
  *
  */
 
-require_once('../lib/base.php');
+require_once __DIR__ . '/../lib/base.php';
 
 header('Content-Type: application/json');
 
index be0aff8add22194c3a8e402b120c1abcd33f0be3..9efca14768e89245baa5342fe76781b0910740cb 100644 (file)
@@ -23,7 +23,7 @@
  *
  */
 
-require_once '../lib/base.php';
+require_once __DIR__ . '/../lib/base.php';
 
 header('Content-type: application/xml');
 
index 0ea3ac4c766a46267a85de3183c86446937e3f82..2d1e70238c1e63b13d291637d6dc9a2bfe909381 100644 (file)
@@ -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)
index 45f65033056a010bd8a39fa5a801b0bae6fad065..dc57431e6c6bbb360e8c7602cd700d33b91624d4 100644 (file)
@@ -20,4 +20,4 @@
  *
  */
 
-require_once 'v1.php';
+require_once __DIR__ . '/v1.php';
index 48fca3e8c38933fb85b4f599b4bb590dec739f2d..2f86bc92bc6a0d53037c35e076948f7cb66ecb76 100644 (file)
@@ -29,7 +29,7 @@
  */
 try {
 
-       require_once 'lib/base.php';
+       require_once __DIR__ . '/lib/base.php';
        if (\OCP\Util::needUpgrade()) {
                // since the behavior of apps or remotes are unpredictable during
                // an upgrade, return a 503 directly
index d4c321be8025fdfcb62e2e2e38a8ed5d37af8298..e5bd3bb8fed0d7b97ff042712f8dfb1d68516688 100644 (file)
@@ -107,7 +107,7 @@ function resolveService($service) {
 }
 
 try {
-       require_once 'lib/base.php';
+       require_once __DIR__ . '/lib/base.php';
 
        // All resources served via the DAV endpoint should have the strictest possible
        // policy. Exempted from this is the SabreDAV browser plugin which overwrites
index a24bb30456e4c70a519b9c0e14627c2b1418bf20..7d1a50f935c41ad455e503d5d847f65fc38ac122 100644 (file)
@@ -29,7 +29,7 @@
 
 try {
 
-       require_once 'lib/base.php';
+       require_once __DIR__ . '/lib/base.php';
 
        $systemConfig = \OC::$server->getSystemConfig();