Skip to content
Snippets Groups Projects
Commit 93c75f46 authored by Michael Gapczynski's avatar Michael Gapczynski
Browse files

Forgot data parameter for file_put_contents() streams pre proxies

parent ea18d70c
No related branches found
No related tags found
No related merge requests found
......@@ -201,7 +201,7 @@ class OC_FilesystemView {
public function file_put_contents($path, $data) {
if(is_resource($data)) {//not having to deal with streams in file_put_contents makes life easier
$absolutePath = $this->getAbsolutePath($path);
if (OC_FileProxy::runPreProxies('file_put_contents', $absolutePath) && OC_Filesystem::isValidPath($path)) {
if (OC_FileProxy::runPreProxies('file_put_contents', $absolutePath, $data) && OC_Filesystem::isValidPath($path)) {
$path = $this->getRelativePath($absolutePath);
$exists = $this->file_exists($path);
$run = true;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment