mirror of
https://github.com/nextcloud/server.git
synced 2026-06-09 00:32:29 -04:00
Fix call of function touch
This commit is contained in:
parent
2528778651
commit
edeaa0a4a1
1 changed files with 1 additions and 1 deletions
|
|
@ -370,7 +370,7 @@ class OC_Filesystem{
|
|||
return self::basicOperation('fileatime',$path);
|
||||
}
|
||||
static public function touch($path, $mtime=null){
|
||||
return self::$defaultInstance->touch($path, $mtime);
|
||||
return self::basicOperation('touch',$path,array($mtime));
|
||||
}
|
||||
static public function file_get_contents($path){
|
||||
return self::basicOperation('file_get_contents',$path,array('read'));
|
||||
|
|
|
|||
Loading…
Reference in a new issue