summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/private/Files/ObjectStore/ObjectStoreStorage.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/private/Files/ObjectStore/ObjectStoreStorage.php b/lib/private/Files/ObjectStore/ObjectStoreStorage.php
index 681e45ad3f2..fbfbcfaa409 100644
--- a/lib/private/Files/ObjectStore/ObjectStoreStorage.php
+++ b/lib/private/Files/ObjectStore/ObjectStoreStorage.php
@@ -410,10 +410,10 @@ class ObjectStoreStorage extends \OC\Files\Storage\Common {
}
public function file_put_contents($path, $data) {
- $stream = fopen('php://temp', 'r+');
- fwrite($stream, $data);
- rewind($stream);
- return $this->writeStream($path, $stream, strlen($data)) > 0;
+ $handle = $this->fopen($path, 'w+');
+ fwrite($handle, $data);
+ fclose($handle);
+ return true;
}
public function writeStream(string $path, $stream, int $size = null): int {