Skip to content
Snippets Groups Projects
Commit de4e4cb6 authored by Robin Appelman's avatar Robin Appelman
Browse files

also dont download existing on fopen when using w+ and wb+

parent 6cc65b53
No related branches found
No related tags found
No related merge requests found
......@@ -170,13 +170,13 @@ abstract class Flysystem extends Common {
return false;
}
case 'w':
case 'w+':
case 'wb':
case 'wb+':
$useExisting = false;
case 'a':
case 'ab':
case 'r+':
case 'w+':
case 'wb+':
case 'a+':
case 'x':
case 'x+':
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment