diff options
author | Vincent Petry <vincent@nextcloud.com> | 2022-11-14 16:40:40 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-14 16:40:40 +0100 |
commit | 1a75cc19c8ca3d040a710ea4f4e6df7173500af1 (patch) | |
tree | 4bf01d710b28d582720294fa5e129928f0a185e3 /lib | |
parent | f9459b0e2defc3d1c5d7a8b7543de962799a4372 (diff) | |
parent | d485db32bc448df3f98faa587875d2ebf152e638 (diff) | |
download | nextcloud-server-1a75cc19c8ca3d040a710ea4f4e6df7173500af1.tar.gz nextcloud-server-1a75cc19c8ca3d040a710ea4f4e6df7173500af1.zip |
Merge pull request #35048 from nextcloud/backport/34834/stable25
[stable25] Fix size calculation on copying the skeleton files
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/legacy/OC_Util.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/legacy/OC_Util.php b/lib/private/legacy/OC_Util.php index bf9ed6e29ff..88cd6baddc5 100644 --- a/lib/private/legacy/OC_Util.php +++ b/lib/private/legacy/OC_Util.php @@ -254,7 +254,7 @@ class OC_Util { closedir($dir); return; } - stream_copy_to_stream($sourceStream, $child->fopen('w')); + $child->putContent($sourceStream); } } } |