Skip to content
Snippets Groups Projects
Commit 3219433e authored by Thomas Müller's avatar Thomas Müller
Browse files

Merge pull request #7036 from LeBlaaanc/patch-1

Removed '/'. Fixes #7035.
parents 0241ddc7 652f6041
Branches
No related tags found
No related merge requests found
......@@ -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;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment