Merge pull request #1471 from owncloud/temp-storage-call-parent-ctor-master

Temp storage call parent ctor master
remotes/origin/stable5
Michael Gapczynski 12 years ago
commit 69fd3f42e5
  1. 4
      lib/files/storage/temporary.php

@ -9,11 +9,11 @@
namespace OC\Files\Storage;
/**
* local storage backnd in temporary folder for testing purpores
* local storage backend in temporary folder for testing purpose
*/
class Temporary extends Local{
public function __construct($arguments) {
$this->datadir=\OC_Helper::tmpFolder();
parent::__construct(array('datadir' => \OC_Helper::tmpFolder()));
}
public function cleanUp() {

Loading…
Cancel
Save