fix small bug in filesystem abstraction

This commit is contained in:
Robin Appelman 2010-10-18 16:21:47 +00:00
parent a3940dc628
commit 653c6e5984
1 changed files with 1 additions and 2 deletions

View File

@ -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){