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

remotes/origin/handlebars-approach
Robin Appelman 11 years ago
parent 6cc65b53ab
commit de4e4cb6ea
  1. 4
      lib/private/files/storage/flysystem.php

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

Loading…
Cancel
Save