Skip to content
Snippets Groups Projects
Commit 652f6041 authored by Chris LeBlanc's avatar Chris LeBlanc
Browse files

Removed '/'. Fixes #7035.

Not sure if that '/' is necessary but it broke things on my installation.
parent cf6538ab
No related branches found
No related tags found
No related merge requests found
...@@ -35,7 +35,7 @@ try { ...@@ -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;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment