1
0
Mirror von https://github.com/nextcloud/server.git synchronisiert 2024-09-01 05:57:11 +02:00

also emmit create hook when creating new files using touch()

Dieser Commit ist enthalten in:
Robin Appelman 2013-08-29 15:31:03 +02:00
Ursprung 301cce54cc
Commit 1fa29b4c11

Datei anzeigen

@ -249,6 +249,7 @@ class View {
$hooks = array('touch');
if (!$this->file_exists($path)) {
$hooks[] = 'create';
$hooks[] = 'write';
}
$result = $this->basicOperation('touch', $path, $hooks, $mtime);