pass the argument to the ctor

Conflicts:
	lib/files/storage/temporary.php
This commit is contained in:
Thomas Mueller 2013-01-31 22:04:08 +01:00
parent 86f4126d2c
commit 1fd807a7d6
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ namespace OC\Files\Storage;
*/
class Temporary extends Local{
public function __construct($arguments) {
$this->datadir=\OC_Helper::tmpFolder();
parent::__construct(array('datadir' => \OC_Helper::tmpFolder()));
}
public function cleanUp() {