Merge pull request #7036 from LeBlaaanc/patch-1
Removed '/'. Fixes #7035.
This commit is contained in:
commit
3219433e20
|
@ -35,7 +35,7 @@ try {
|
||||||
if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') {
|
if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') {
|
||||||
$file = OC_App::getAppPath($app) .'/'. $parts[1];
|
$file = OC_App::getAppPath($app) .'/'. $parts[1];
|
||||||
}else{
|
}else{
|
||||||
$file = '/' . OC_App::getAppPath($app) .'/'. $parts[1];
|
$file = OC_App::getAppPath($app) .'/'. $parts[1];
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue