]> source.dussan.org Git - nextcloud-server.git/commitdiff
cast storage_mtime to int
authorThomas Müller <thomas.mueller@tmit.eu>
Fri, 25 Oct 2013 10:39:50 +0000 (12:39 +0200)
committerThomas Müller <thomas.mueller@tmit.eu>
Fri, 25 Oct 2013 10:39:50 +0000 (12:39 +0200)
lib/private/files/cache/cache.php

index fc2d965d7f97fff2d273ae2de1f90dcbb701b7f5..824f54de21fa3079dba98a24e6b8e571eccb5ccb 100644 (file)
@@ -140,6 +140,7 @@ class Cache {
                        $data['fileid'] = (int)$data['fileid'];
                        $data['size'] = (int)$data['size'];
                        $data['mtime'] = (int)$data['mtime'];
+                       $data['storage_mtime'] = (int)$data['storage_mtime'];
                        $data['encrypted'] = (bool)$data['encrypted'];
             $data['unencrypted_size'] = (int)$data['unencrypted_size'];
                        $data['storage'] = $this->storageId;