Not sure if that '/' is necessary but it broke things on my installation.
This commit is contained in:
Chris LeBlanc 2014-02-01 00:56:55 -06:00
Родитель cf6538abde
Коммит 652f60419f
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

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