fix remote.php for our favorite OS - Windows
This commit is contained in:
parent
06d00af9f8
commit
a657bfa369
|
@ -29,7 +29,11 @@ switch ($app) {
|
||||||
default:
|
default:
|
||||||
OC_Util::checkAppEnabled($app);
|
OC_Util::checkAppEnabled($app);
|
||||||
OC_App::loadApp($app);
|
OC_App::loadApp($app);
|
||||||
|
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;
|
break;
|
||||||
}
|
}
|
||||||
$baseuri = OC::$WEBROOT . '/remote.php/'.$service.'/';
|
$baseuri = OC::$WEBROOT . '/remote.php/'.$service.'/';
|
||||||
|
|
Loading…
Reference in New Issue