aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Storage/File.php
diff options
context:
space:
mode:
authorgit-marijus <mario@mariovavti.com>2017-07-27 11:17:08 +0200
committergit-marijus <mario@mariovavti.com>2017-07-27 11:17:08 +0200
commit9be4c4d6d1aa7894da44aae8c35f6c96c9475591 (patch)
tree03f5ffd3d5c8b7c07a8b1084178cb9dafabb2fd1 /Zotlabs/Storage/File.php
parente71cdf02a8303689c933b98185e2671f49fc5a7d (diff)
parentdbbae4bac81d18f814c18ac8d0ea51667e00703f (diff)
downloadvolse-hubzilla-9be4c4d6d1aa7894da44aae8c35f6c96c9475591.tar.gz
volse-hubzilla-9be4c4d6d1aa7894da44aae8c35f6c96c9475591.tar.bz2
volse-hubzilla-9be4c4d6d1aa7894da44aae8c35f6c96c9475591.zip
Merge remote-tracking branch 'mike/master' into dev
Diffstat (limited to 'Zotlabs/Storage/File.php')
-rw-r--r--Zotlabs/Storage/File.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Storage/File.php b/Zotlabs/Storage/File.php
index 1475241ab..7a102134f 100644
--- a/Zotlabs/Storage/File.php
+++ b/Zotlabs/Storage/File.php
@@ -265,7 +265,7 @@ class File extends DAV\Node implements DAV\IFile {
$f = 'store/' . $this->auth->owner_nick . '/' . (($this->os_path) ? $this->os_path . '/' : '') . $x;
else
$f = $x;
- return fopen($f, 'rb');
+ return @fopen($f, 'rb');
}
return dbunescbin($r[0]['content']);
}