Merge pull request #8866 from owncloud/flock-quotafix

Fixed quota wrapper to return the value from flock()
This commit is contained in:
Vincent Petry 2014-06-05 13:11:45 +02:00
commit bbdcbb9911
1 changed files with 1 additions and 1 deletions

View File

@ -123,7 +123,7 @@ class Quota {
}
public function stream_lock($mode) {
flock($this->source, $mode);
return flock($this->source, $mode);
}
public function stream_flush() {