code style changes

remotes/origin/stable5
scambra 12 years ago
parent d9c14292a4
commit 5af8adc169
  1. 4
      lib/connector/sabre/quotaplugin.php

@ -46,7 +46,9 @@ class OC_Connector_Sabre_QuotaPlugin extends Sabre_DAV_ServerPlugin {
$expected = $this->server->httpRequest->getHeader('X-Expected-Entity-Length');
$length = $expected ? $expected : $this->server->httpRequest->getHeader('Content-Length');
if ($length) {
if(substr($uri,0,1)!=='/') $uri='/'.$uri;
if (substr($uri, 0, 1)!=='/') {
$uri='/'.$uri;
}
list($parentUri, $newName) = Sabre_DAV_URLUtil::splitPath($uri);
if ($length > OC_Filesystem::free_space($parentUri)) {
throw new Sabre_DAV_Exception('Quota exceeded. File is too big.');

Loading…
Cancel
Save