cast storage_mtime to int

This commit is contained in:
Thomas Müller 2013-10-25 12:39:50 +02:00
parent f91a4c89ca
commit f619f59f1c
1 changed files with 1 additions and 0 deletions

View 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;