mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
Changed ctime for the shared folder to the earliest ctime
This commit is contained in:
parent
3f5fde50c1
commit
e3ea84d048
1 changed files with 1 additions and 1 deletions
|
|
@ -197,7 +197,7 @@ class OC_FILESTORAGE_SHARED {
|
|||
$dir = OC_FILESTORAGE_SHARED::opendir($path);
|
||||
while (($filename = readdir($dir)) != false) {
|
||||
$tempctime = OC_FILESTORAGE_SHARED::filectime($filename);
|
||||
if ($tempctime > $ctime) {
|
||||
if ($tempctime < $ctime) {
|
||||
$ctime = $tempctime;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue