diff options
author | Chris LeBlanc <chris@leblaaanc.com> | 2014-02-01 00:56:55 -0600 |
---|---|---|
committer | Chris LeBlanc <chris@leblaaanc.com> | 2014-02-01 00:56:55 -0600 |
commit | 652f60419f9b4093bc8036f9be0eedaf1dd3804a (patch) | |
tree | a40425e72d255e16926b09b688f2ce3ef4114f5e /remote.php | |
parent | cf6538abdeb1a89ee020ded19a9711ea1f013327 (diff) | |
download | nextcloud-server-652f60419f9b4093bc8036f9be0eedaf1dd3804a.tar.gz nextcloud-server-652f60419f9b4093bc8036f9be0eedaf1dd3804a.zip |
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.php | 2 |
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; } |