mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
also dont download existing on fopen when using w+ and wb+
This commit is contained in:
parent
6cc65b53ab
commit
de4e4cb6ea
1 changed files with 2 additions and 2 deletions
|
|
@ -170,13 +170,13 @@ abstract class Flysystem extends Common {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
case 'w':
|
case 'w':
|
||||||
|
case 'w+':
|
||||||
case 'wb':
|
case 'wb':
|
||||||
|
case 'wb+':
|
||||||
$useExisting = false;
|
$useExisting = false;
|
||||||
case 'a':
|
case 'a':
|
||||||
case 'ab':
|
case 'ab':
|
||||||
case 'r+':
|
case 'r+':
|
||||||
case 'w+':
|
|
||||||
case 'wb+':
|
|
||||||
case 'a+':
|
case 'a+':
|
||||||
case 'x':
|
case 'x':
|
||||||
case 'x+':
|
case 'x+':
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue