Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Appelman <icewind1991@gmail.com>2011-10-21 19:02:11 +0400
committerRobin Appelman <icewind@owncloud.com>2012-02-21 23:48:47 +0400
commit3d67cd51c2f42029435343004b3ebe608bcba375 (patch)
treed1b6a031f577da075be25857c9b520e4078e62ea /lib/filestorage
parentabc749feeb14c49d483135f879195b70ee89654f (diff)
encryption proxy wip
Diffstat (limited to 'lib/filestorage')
-rw-r--r--lib/filestorage/local.php2
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)){
}
}