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

This commit is contained in:
Robin Appelman 2015-07-03 14:00:05 +02:00
parent 6cc65b53ab
commit de4e4cb6ea
1 changed files with 2 additions and 2 deletions

View File

@ -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+':