diff options
author | Robin Appelman <icewind1991@gmail.com> | 2011-10-21 17:02:11 +0200 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2012-02-21 20:48:47 +0100 |
commit | 3d67cd51c2f42029435343004b3ebe608bcba375 (patch) | |
tree | d1b6a031f577da075be25857c9b520e4078e62ea /lib/filestorage | |
parent | abc749feeb14c49d483135f879195b70ee89654f (diff) | |
download | nextcloud-server-3d67cd51c2f42029435343004b3ebe608bcba375.tar.gz nextcloud-server-3d67cd51c2f42029435343004b3ebe608bcba375.zip |
encryption proxy wip
Diffstat (limited to 'lib/filestorage')
-rw-r--r-- | lib/filestorage/local.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/filestorage/local.php b/lib/filestorage/local.php index dcb516a3afb..ee4b267bcd4 100644 --- a/lib/filestorage/local.php +++ b/lib/filestorage/local.php @@ -74,7 +74,7 @@ class OC_Filestorage_Local extends OC_Filestorage{ public function file_get_contents($path){ return file_get_contents($this->datadir.$path); } - public function file_put_contents($path,$data){ + public function file_put_contents($path,$data=null){ if($return=file_put_contents($this->datadir.$path,$data)){ } } |