summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2013-10-25 12:39:50 +0200
committerThomas Müller <thomas.mueller@tmit.eu>2013-10-25 12:39:50 +0200
commitf619f59f1cffc594f466a94293b1424a6ac28ade (patch)
tree0bfe5564847353c0a7d54910e1ac8eaf96281348
parentf91a4c89cad156f5724449a2c7388abfcf279dc8 (diff)
downloadnextcloud-server-f619f59f1cffc594f466a94293b1424a6ac28ade.tar.gz
nextcloud-server-f619f59f1cffc594f466a94293b1424a6ac28ade.zip
cast storage_mtime to int
-rw-r--r--lib/private/files/cache/cache.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/private/files/cache/cache.php b/lib/private/files/cache/cache.php
index fc2d965d7f9..824f54de21f 100644
--- a/lib/private/files/cache/cache.php
+++ b/lib/private/files/cache/cache.php
@@ -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;