diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2015-11-19 17:27:30 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2015-11-19 17:27:30 +0100 |
commit | 479cee66f40cbb6340b0c1f106101692edde821a (patch) | |
tree | 229d771f0cae279d77a0700b278f664e8d00521c /lib | |
parent | 5c796143d5e3f376a5851f432b7ff95b2096fcc7 (diff) | |
parent | ca6bd5cacd96ef04f5b940787575c5bdecfa756e (diff) | |
download | nextcloud-server-479cee66f40cbb6340b0c1f106101692edde821a.tar.gz nextcloud-server-479cee66f40cbb6340b0c1f106101692edde821a.zip |
Merge pull request #20034 from owncloud/icewind_streams_0.3.0
Bump 3rdparty for icewind/streams-0.3.0
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/files/stream/encryption.php | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/private/files/stream/encryption.php b/lib/private/files/stream/encryption.php index e0d263d80b1..4c328993ef7 100644 --- a/lib/private/files/stream/encryption.php +++ b/lib/private/files/stream/encryption.php @@ -471,4 +471,13 @@ class Encryption extends Wrapper { return parent::stream_seek($position); } + /** + * @param string $path + * @param array $options + * @return bool + */ + public function dir_opendir($path, $options) { + return false; + } + } |