diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2014-02-20 14:29:41 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2014-02-20 14:29:41 +0100 |
commit | 3219433e20d05390aa29c4e9e676f821b48b3ffc (patch) | |
tree | 8368566ba8182330b742bb1de8c7d156e8aeb78d /remote.php | |
parent | 0241ddc759f7e2d2695c4626df5d2ac27b8b1d90 (diff) | |
parent | 652f60419f9b4093bc8036f9be0eedaf1dd3804a (diff) | |
download | nextcloud-server-3219433e20d05390aa29c4e9e676f821b48b3ffc.tar.gz nextcloud-server-3219433e20d05390aa29c4e9e676f821b48b3ffc.zip |
Merge pull request #7036 from LeBlaaanc/patch-1
Removed '/'. Fixes #7035.
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 7884695b3a5..8e7eaa7963b 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; } |