Browse Source

Removed '/'. Fixes #7035.

Not sure if that '/' is necessary but it broke things on my installation.
tags/v7.0.0alpha2
Chris LeBlanc 10 years ago
parent
commit
652f60419f
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      remote.php

+ 1
- 1
remote.php View File

@@ -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;
}

Loading…
Cancel
Save