aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--inc/lib_filesystem.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/inc/lib_filesystem.php b/inc/lib_filesystem.php
index 60201825e06..a64d2ba599b 100644
--- a/inc/lib_filesystem.php
+++ b/inc/lib_filesystem.php
@@ -283,8 +283,7 @@ class OC_FILESYSTEM{
}
static public function file_put_contents($path,$data){
if(self::canWrite($path) and $storage=self::getStorage($path)){
- $this->notifyObservers($path,OC_FILEACTION_WRITE | OC_FILEACTION_CREATE);
- return $storage->file_put_contents(self::getInternalPath($path));
+ return $storage->file_put_contents(self::getInternalPath($path),$data);
}
}
static public function unlink($path){