StaticController: Pass only strings to `str_pad` as first argument

This commit is contained in:
Yonas Habteab 2023-08-17 14:39:34 +02:00 committed by raviks789
parent a965b5c44b
commit 55b4a5eb63
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@ class StaticController extends Controller
}
$s = stat($filePath);
$eTag = sprintf('%x-%x-%x', $s['ino'], $s['size'], (float) str_pad($s['mtime'], 16, '0'));
$eTag = sprintf('%x-%x-%x', $s['ino'], $s['size'], (float) str_pad((string) $s['mtime'], 16, '0'));
$this->getResponse()->setHeader(
'Cache-Control',