Merge pull request #7319 from owncloud/remote-unneeded-if

Remove no longer needed if statement
This commit is contained in:
Morris Jobke 2014-02-20 15:30:51 +01:00
commit b946c0f08b
1 changed files with 1 additions and 5 deletions

View File

@ -32,11 +32,7 @@ try {
default:
OC_Util::checkAppEnabled($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;
}
$baseuri = OC::$WEBROOT . '/remote.php/'.$service.'/';