Skip to content

Commit d293089

Browse files
committed
fix: use mtime 0 instead of NULL - Oracel fix
1 parent 5fb41b0 commit d293089

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

lib/private/Files/Cache/Cache.php

+4-1
Original file line numberDiff line numberDiff line change
@@ -341,6 +341,9 @@ public function update($id, array $data) {
341341
if ($value === '') {
342342
$data[$param] = null;
343343
}
344+
if ($value === null && \in_array($param, ['mtime', 'storage_mtime'], true)) {
345+
$data[$param] = 0;
346+
}
344347
}
345348
}
346349

@@ -411,7 +414,7 @@ protected function buildParts(array $data) {
411414
$params = [];
412415
$queryParts = [];
413416
foreach ($data as $name => $value) {
414-
if (\array_search($name, $fields) !== false) {
417+
if (\in_array($name, $fields, true)) {
415418
if ($name === 'path') {
416419
$params[] = \md5($value);
417420
$queryParts[] = '`path_hash`';

0 commit comments

Comments
 (0)