diff options
author | Thomas Mueller <thomas.mueller@tmit.eu> | 2013-01-31 22:04:08 +0100 |
---|---|---|
committer | Thomas Mueller <thomas.mueller@tmit.eu> | 2013-02-05 16:24:11 +0100 |
commit | 1fd807a7d68d254cfd372105ff672d09f13b4bb7 (patch) | |
tree | cf69d72c3b8bf0d421d2db4ec629766fdb4839f1 /lib | |
parent | 86f4126d2c83a4f796ece79c0eecdec854b31138 (diff) | |
download | nextcloud-server-1fd807a7d68d254cfd372105ff672d09f13b4bb7.tar.gz nextcloud-server-1fd807a7d68d254cfd372105ff672d09f13b4bb7.zip |
pass the argument to the ctor
Conflicts:
lib/files/storage/temporary.php
Diffstat (limited to 'lib')
-rw-r--r-- | lib/files/storage/temporary.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/files/storage/temporary.php b/lib/files/storage/temporary.php index ffc55e27507..b8bb6192786 100644 --- a/lib/files/storage/temporary.php +++ b/lib/files/storage/temporary.php @@ -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() { |