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

Temp storage call parent ctor master
This commit is contained in:
Michael Gapczynski 2013-02-05 08:03:18 -08:00
commit 69fd3f42e5

View file

@ -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() {