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
diff options
context:
space:
mode:
authorChris LeBlanc <chris@leblaaanc.com>2014-02-01 10:56:55 +0400
committerChris LeBlanc <chris@leblaaanc.com>2014-02-01 10:56:55 +0400
commit652f60419f9b4093bc8036f9be0eedaf1dd3804a (patch)
treea40425e72d255e16926b09b688f2ce3ef4114f5e /remote.php
parentcf6538abdeb1a89ee020ded19a9711ea1f013327 (diff)
Removed '/'. Fixes #7035.
Not sure if that '/' is necessary but it broke things on my installation.
Diffstat (limited to 'remote.php')
-rw-r--r--remote.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/remote.php b/remote.php
index 2d0088cd903..fdbb796d917 100644
--- a/remote.php
+++ b/remote.php
@@ -35,7 +35,7 @@ try {
if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') {
$file = OC_App::getAppPath($app) .'/'. $parts[1];
}else{
- $file = '/' . OC_App::getAppPath($app) .'/'. $parts[1];
+ $file = OC_App::getAppPath($app) .'/'. $parts[1];
}
break;
}